Skip to content

Commit 4fce17c

Browse files
authored
Update bootstrap.php
removed time limit so app doesn't crash when updating
1 parent 6be418f commit 4fce17c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

SOURCE/httpd.private/system/bootstrap.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
set_time_limit(0);
23
$_GET['route'] = (isset($_GET['route']))? $_GET['route'] : 'home';
34
define("VERSION", "1.5.0");
45
define("SKIN", "original");
@@ -27,4 +28,4 @@
2728
require(SYSCONT.'viewController.php');
2829

2930
include_once(SYS.'functions.php');
30-
include_once PROOT.DS.'/routes/web.php';
31+
include_once PROOT.DS.'/routes/web.php';

0 commit comments

Comments
 (0)