improvement: include/admin/images.inc.php
Posted: Tue May 23, 2006 12:21 am
On line 18 replace
with
Why? If in the php.ini set_time_limit() is listed in disable_functions the old version _will_ return an error. 
regards, twobee.
Code: Select all
@set_time_limit(0);
Code: Select all
if (function_exists('set_time_limit')
{
@set_time_limit(0);
}
regards, twobee.