summaryrefslogtreecommitdiff
path: root/protected
diff options
context:
space:
mode:
authorPatrick Seeger <pseeger@ccwn.org>2012-06-07 16:16:44 +0200
committerPatrick Seeger <pseeger@ccwn.org>2012-06-07 16:16:44 +0200
commitd806ccc43a2b875f1b7fcf50f33a74d122fa8d5e (patch)
tree41bf3f5d95518f5b3498f2af032ec4a97dead672 /protected
parent378e164a3d314766d8993b741f333425a8d3a979 (diff)
Google Analytics
Diffstat (limited to 'protected')
-rw-r--r--protected/modules/cms/controllers/SitecontentController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/protected/modules/cms/controllers/SitecontentController.php b/protected/modules/cms/controllers/SitecontentController.php
index 3d377cb..5f9653a 100644
--- a/protected/modules/cms/controllers/SitecontentController.php
+++ b/protected/modules/cms/controllers/SitecontentController.php
@@ -43,9 +43,9 @@ class SitecontentController extends Controller
$this->breadcrumbs = array($model->title);
if($model->depth == 1) {
- $this->menu = CMS::getMenuPoints($model->id);
+ $this->menu = Cms::getMenuPoints($model->id);
} elseif ($model->depth == 2){
- $this->menu = CMS::getMenuPoints($model->oparent->id);
+ $this->menu = Cms::getMenuPoints($model->oparent->id);
}
$this->render('view', array(
'sitecontent' => $model,