Show
Ignore:
Timestamp:
06/05/08 17:18:12 (6 months ago)
Author:
sidtheduck
Message:

+ Lots of sorting fixes

  • Now sorting is the same throughout . defaults from Admin->Options are used on both Admin->Manage and front-end gallery . plogger_init_picture order = plogger_init_pictures order . sorting fixes from Import display to actually saving the files

+ Additional check for safe_mode workaround to see if ftp_connect function exists in compiled PHP installation before attempting the workaround

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/plogger/form_setup.php

    r543 r546  
    5151   <?php 
    5252   //if server is safe_mode enabled, prompt user for FTP info for FTP workaround 
    53    if (ini_get('safe_mode')==1){?> 
     53   if (ini_get('safe_mode') && function_exists('ftp_connect')){?> 
    5454   <tr> 
    5555        <td colspan="2"> 
    5656                <div id="navcontainer"> 
    5757                        <h1>Safe_mode FTP workaround</h1> 
    58          <br/>Safe mode has been detected on your server.  FTP access is needed to allow Plogger to work correctly with safe_mode=on. 
     58         <br />Safe mode has been detected on your server.  FTP access is needed to allow Plogger to work correctly with safe_mode enabled. 
    5959      </div> 
    6060                </td>