oseawey / timthumb

Automatically exported from code.google.com/p/timthumb
0 stars 0 forks source link

Type #161

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Testing script by apache on win32.

There is typo in the line:
784:    if (!substr ($_SERVER['SCRIPT_FILENAME'], 0, 1) == '/') {
this condition will fail ever when is first character is '/';
I think it must be something like
784:    if (substr ($_SERVER['SCRIPT_FILENAME'], 0, 1) != '/') {

Original issue reported on code.google.com by mega...@gmail.com on 14 Feb 2011 at 9:11

GoogleCodeExporter commented 9 years ago
this code is no longer used so I'll close the ticket

Original comment by BinaryMoon on 21 Apr 2011 at 11:03