]> git.p6c8.net - jirafeau_project.git/blobdiff - admin.php
Fix some bugs due to PHP's max_execution_time
[jirafeau_project.git] / admin.php
index bf61e6d5ee58e787244eb2d747ecfff3e345084e..2fd8d2920349050c2b36242b8df1130cc06eb51d 100755 (executable)
--- a/admin.php
+++ b/admin.php
@@ -107,6 +107,11 @@ elseif (!isset ($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true)
     exit;
 }
 
+/* Operations may take a long time.
+ * Be sure PHP's safe mode is off.
+ */
+ set_time_limit(0);
+
 /* Admin interface. */
 require (JIRAFEAU_ROOT . 'lib/template/header.php');
 ?><h2><?php echo t('Admin interface'); ?></h2><?php
@@ -266,4 +271,4 @@ if (isset ($_POST['action']))
 
 require (JIRAFEAU_ROOT.'lib/template/footer.php');
 
-?>
\ No newline at end of file
+?>

patrick-canterino.de