From 3c3b8b40de1cb54a03f0870903e5e7cb5da0af9d Mon Sep 17 00:00:00 2001 From: Tom Rix Date: Mon, 15 Feb 2010 20:11:56 +0000 Subject: [PATCH] MINOR disable real-time static publishing git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@99008 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/staticpublisher/StaticPublisher.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/staticpublisher/StaticPublisher.php b/code/staticpublisher/StaticPublisher.php index afc9f14b..95f70943 100644 --- a/code/staticpublisher/StaticPublisher.php +++ b/code/staticpublisher/StaticPublisher.php @@ -13,7 +13,8 @@ abstract class StaticPublisher extends DataObjectDecorator { // Realtime static publishing... the second a page // is saved, it is written to the cache - static $disable_realtime = false; + // @todo this is currently disabled until template problems can be fixed + static $disable_realtime = true; abstract function publishPages($pages); abstract function unpublishPages($pages);