mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 09:05:53 +00:00
Replaced 300-second 'long execution' times with unlimited
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@65529 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
e28bfb2730
commit
d03e189f63
@ -1157,7 +1157,7 @@ HTML;
|
||||
* Helper function to get page count
|
||||
*/
|
||||
function getpagecount() {
|
||||
ini_set('max_execution_time',300);
|
||||
ini_set('max_execution_time', 0);
|
||||
$excludePages = split(" *, *", $_GET['exclude']);
|
||||
|
||||
$pages = DataObject::get("SiteTree", "ParentID = 0");
|
||||
@ -1185,7 +1185,7 @@ HTML;
|
||||
|
||||
function publishall() {
|
||||
ini_set("memory_limit", -1);
|
||||
ini_set('max_execution_time', 300);
|
||||
ini_set('max_execution_time', 0);
|
||||
|
||||
$response = "";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user