Changeset 502 in subversion


Ignore:
Timestamp:
Mar 4, 2007 7:47:45 AM (6 years ago)
Author:
tomekp
Message:

check if safe mode is on or not

Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r501 r502  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42007/03/04 (tomekp) 
     5- check if safe mode is on or not (closes #1484269) 
    36 
    472007/03/02 (thomasb) 
  • trunk/roundcubemail/index.php

    r500 r502  
    7474// increase maximum execution time for php scripts 
    7575// (does not work in safe mode) 
    76 @set_time_limit(120); 
     76if (!ini_get('safe_mode')) @set_time_limit(120); 
    7777 
    7878// include base files 
Note: See TracChangeset for help on using the changeset viewer.