Show
Ignore:
Timestamp:
2008-02-25 17:54:16 (9 months ago)
Author:
fredck
Message:

Several minor fixes, preparing the trunk for the release of FCKeditor 2.6 Beta 1:

  • Fixed lint warnings.
  • Configured the lint config to ignore @cc comments.
  • "What's New?" spell check and formatting.
  • Run fixlineends.bat
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/filemanager/connectors/php/io.php

    r1625 r1629  
    119119                // Enable error tracking to catch the error. 
    120120                ini_set( 'track_errors', '1' ) ; 
    121                  
     121 
    122122                if ( isset( $Config['ChmodOnFolderCreate'] ) && !$Config['ChmodOnFolderCreate'] ) 
    123123                { 
    124124                        mkdir( $folderPath ) ; 
    125125                } 
    126                 else  
     126                else 
    127127                { 
    128128                        $permissions = 0777 ; 
     
    134134                        $oldumask = umask(0) ; 
    135135                        mkdir( $folderPath, $permissions ) ; 
    136                         umask( $oldumask ) ;                     
    137                 }                
     136                        umask( $oldumask ) ; 
     137                } 
    138138 
    139139                $sErrorMsg = $php_errormsg ;