Page 1 of 1

improvement: include/admin/images.inc.php

Posted: Tue May 23, 2006 12:21 am
by twobee
On line 18 replace

Code: Select all

              @set_time_limit(0);
with

Code: Select all

        if (function_exists('set_time_limit')
          {
              @set_time_limit(0);
          }
Why? If in the php.ini set_time_limit() is listed in disable_functions the old version _will_ return an error. ;)


regards, twobee.

Re: improvement: include/admin/images.inc.php

Posted: Tue May 23, 2006 11:20 am
by garvinhicking
Hi!

Good suggestion, committed to SVN. :)

Regards,
Garvin