Ticket #662: 662.patch
File 662.patch, 2.5 KB (added by , 15 years ago) |
---|
-
_samples/perl/sample01.cgi
105 105 if($DefServerPath) { 106 106 $dir = $DefServerPath; 107 107 } else { 108 if($ENV{' PATH_INFO'}) {109 $dir = $ENV{' PATH_INFO'};108 if($ENV{'REQUEST_URI'}) { 109 $dir = $ENV{'REQUEST_URI'}; 110 110 } elsif($ENV{'FILEPATH_INFO'}) { 111 111 $dir = $ENV{'FILEPATH_INFO'}; 112 112 } -
_samples/perl/sample02.cgi
170 170 if($DefServerPath) { 171 171 $dir = $DefServerPath; 172 172 } else { 173 if($ENV{' PATH_INFO'}) {174 $dir = $ENV{' PATH_INFO'};173 if($ENV{'REQUEST_URI'}) { 174 $dir = $ENV{'REQUEST_URI'}; 175 175 } elsif($ENV{'FILEPATH_INFO'}) { 176 176 $dir = $ENV{'FILEPATH_INFO'}; 177 177 } -
_samples/perl/sample03.cgi
155 155 if($DefServerPath) { 156 156 $dir = $DefServerPath; 157 157 } else { 158 if($ENV{' PATH_INFO'}) {159 $dir = $ENV{' PATH_INFO'};158 if($ENV{'REQUEST_URI'}) { 159 $dir = $ENV{'REQUEST_URI'}; 160 160 } elsif($ENV{'FILEPATH_INFO'}) { 161 161 $dir = $ENV{'FILEPATH_INFO'}; 162 162 } -
_samples/perl/sample04.cgi
162 162 if($DefServerPath) { 163 163 $dir = $DefServerPath; 164 164 } else { 165 if($ENV{' PATH_INFO'}) {166 $dir = $ENV{' PATH_INFO'};165 if($ENV{'REQUEST_URI'}) { 166 $dir = $ENV{'REQUEST_URI'}; 167 167 } elsif($ENV{'FILEPATH_INFO'}) { 168 168 $dir = $ENV{'FILEPATH_INFO'}; 169 169 } -
_whatsnew.html
107 107 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1832">#1832</a>] Calling 108 108 FCK.InsertHtml() in non-IE browsers would now activate the document processor 109 109 as expected.</li> 110 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/662">#662</a>] In the Perl 111 sample files, the GetServerPath function will now calulate the path properly.</li> 110 112 </ul> 111 113 <h3> 112 114 Version 2.6 Beta 1</h3>