Changeset 1809

Show
Ignore:
Timestamp:
2008-03-26 17:32:37 (5 months ago)
Author:
wwalc
Message:

Fix for #622. Perl samples should find the valid path now.

Location:
FCKeditor/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/_samples/perl/sample01.cgi

    r1565 r1809  
    110110                } elsif($ENV{'FILEPATH_INFO'}) { 
    111111                        $dir  = $ENV{'FILEPATH_INFO'}; 
     112                } elsif($ENV{'REQUEST_URI'}) { 
     113                        $dir  = $ENV{'REQUEST_URI'}; 
    112114                } 
    113115        } 
  • FCKeditor/trunk/_samples/perl/sample02.cgi

    r1565 r1809  
    175175                } elsif($ENV{'FILEPATH_INFO'}) { 
    176176                        $dir  = $ENV{'FILEPATH_INFO'}; 
     177                } elsif($ENV{'REQUEST_URI'}) { 
     178                        $dir  = $ENV{'REQUEST_URI'}; 
    177179                } 
    178180        } 
  • FCKeditor/trunk/_samples/perl/sample03.cgi

    r1565 r1809  
    160160                } elsif($ENV{'FILEPATH_INFO'}) { 
    161161                        $dir  = $ENV{'FILEPATH_INFO'}; 
     162                } elsif($ENV{'REQUEST_URI'}) { 
     163                        $dir  = $ENV{'REQUEST_URI'}; 
    162164                } 
    163165        } 
  • FCKeditor/trunk/_samples/perl/sample04.cgi

    r1565 r1809  
    167167                } elsif($ENV{'FILEPATH_INFO'}) { 
    168168                        $dir  = $ENV{'FILEPATH_INFO'}; 
     169                } elsif($ENV{'REQUEST_URI'}) { 
     170                        $dir  = $ENV{'REQUEST_URI'}; 
    169171                } 
    170172        } 
  • FCKeditor/trunk/_whatsnew.html

    r1805 r1809  
    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>