From 5b7301b2db524e356c05b0ae70a2bde35ba3e219 Mon Sep 17 00:00:00 2001 From: Andrew O'Neil Date: Thu, 25 Oct 2007 01:10:31 +0000 Subject: [PATCH] GSOC #118 - Coding Conventions git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@43832 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/CMSMain.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/CMSMain.php b/code/CMSMain.php index 58a3b612..20c0bbb4 100644 --- a/code/CMSMain.php +++ b/code/CMSMain.php @@ -476,7 +476,7 @@ JS; $record->write(); $record->publish("Stage", "Live"); - Sitemap::Ping(); + Sitemap::ping(); // Fix the sort order for this page's siblings DB::query("UPDATE SiteTree_Live @@ -702,7 +702,7 @@ HTML; $page->Status = "Unpublished"; $page->write(); - Sitemap::Ping(); + Sitemap::ping(); return $this->tellBrowserAboutPublicationChange($page, sprintf(_t('CMSMain.REMOVEDPAGE',"Removed '%s' from the published site"),$page->Title)); }