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:
Sam Minnee 2008-11-10 05:06:08 +00:00
parent e28bfb2730
commit d03e189f63

View File

@ -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 = "";