Ticket #662: 662_3.patch

File 662_3.patch, 2.2 kB (added by w.olchawa, 7 months ago)

Corrected little mistakes in _whatsnew.html

  • _samples/perl/sample01.cgi

     
    109109                        $dir  = $ENV{'PATH_INFO'}; 
    110110                } elsif($ENV{'FILEPATH_INFO'}) { 
    111111                        $dir  = $ENV{'FILEPATH_INFO'}; 
     112                } elsif($ENV{'REQUEST_URI'}) { 
     113                        $dir  = $ENV{'REQUEST_URI'}; 
    112114                } 
    113115        } 
    114116        return($dir); 
  • _samples/perl/sample02.cgi

     
    174174                        $dir  = $ENV{'PATH_INFO'}; 
    175175                } elsif($ENV{'FILEPATH_INFO'}) { 
    176176                        $dir  = $ENV{'FILEPATH_INFO'}; 
     177                } elsif($ENV{'REQUEST_URI'}) { 
     178                        $dir  = $ENV{'REQUEST_URI'}; 
    177179                } 
    178180        } 
    179181        return($dir); 
  • _samples/perl/sample03.cgi

     
    159159                        $dir  = $ENV{'PATH_INFO'}; 
    160160                } elsif($ENV{'FILEPATH_INFO'}) { 
    161161                        $dir  = $ENV{'FILEPATH_INFO'}; 
     162                } elsif($ENV{'REQUEST_URI'}) { 
     163                        $dir  = $ENV{'REQUEST_URI'}; 
    162164                } 
    163165        } 
    164166        return($dir); 
  • _samples/perl/sample04.cgi

     
    166166                        $dir  = $ENV{'PATH_INFO'}; 
    167167                } elsif($ENV{'FILEPATH_INFO'}) { 
    168168                        $dir  = $ENV{'FILEPATH_INFO'}; 
     169                } elsif($ENV{'REQUEST_URI'}) { 
     170                        $dir  = $ENV{'REQUEST_URI'}; 
    169171                } 
    170172        } 
    171173        return($dir); 
  • _whatsnew.html

     
    159159                        IE, the first character of table captions where being lost on table creation.</li> 
    160160                <li>The selection and cursor position was not being properly handled when creating some 
    161161                        elements like forms and tables.</li> 
     162                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/662">#662</a>] In the Perl  
     163                        sample files, the GetServerPath function will now calulate the path properly.</li> 
    162164        </ul> 
    163165        <h3> 
    164166                Version 2.6 Beta 1</h3>