From: Ben Klang Date: Wed, 29 Sep 2010 15:38:58 +0000 (-0400) Subject: One more place the class name has changed X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6b609a77f9d6a96635955d7bb5d6bbe96fdf501a;p=horde.git One more place the class name has changed --- diff --git a/wicked/lib/Block/page.php b/wicked/lib/Block/page.php index 676833b61..c1f4fbd14 100644 --- a/wicked/lib/Block/page.php +++ b/wicked/lib/Block/page.php @@ -19,13 +19,13 @@ class Horde_Block_Wicked_page extends Horde_Block protected function _title() { - $page = Page::getPage($this->_params['page']); + $page = Wicked_Page::getPage($this->_params['page']); return htmlspecialchars($page->pageName()); } protected function _content() { - $page = Page::getPage($this->_params['page']); + $page = Wicked_Page::getPage($this->_params['page']); return $page->render(WICKED_MODE_BLOCK); }