Show
Ignore:
Timestamp:
2007-05-30 21:36:32 (20 months ago)
Author:
fredck
Message:

Many fixes:

  • \r\n will always be used for the compressed files generation.
  • applied changes that were wrongly done exclusively on FCKrelease with [226].
  • typos and small layout fixes.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKpackager/trunk/fckpackager.php

    r156 r335  
    3434// Check the number of arguments passed. The first one is the script name. 
    3535if ( count( $argv ) > 2 ) 
    36         ExitError( 'Invalid arguments. Operation aborted' ) ; 
     36        ExitError( 'Invalid arguments. Operation aborted.' ) ; 
    3737 
    3838// Get the package definition file 
     
    4545$packager->LoadDefinitionFile( $xmlFileName ) ; 
    4646$packager->Run() ; 
     47 
    4748?> 
    4849 
     
    499500 
    500501                        // Each file terminates with a CRLF, even if compressed. 
    501                         $outputData .= "\n" ; 
     502                        $outputData .= "\r\n" ; 
    502503                } 
    503504