fixed wrong case

This commit is contained in:
jeena 2013-07-10 12:37:30 +02:00
parent 4bb0f353a2
commit fcad3b07f1

View file

@ -29,10 +29,10 @@ class PageController extends Katharsis_Controller_Abstract
foreach($pageData as $key => $value) { foreach($pageData as $key => $value) {
$this->_view->{$key} = $value; $this->_view->{$key} = $value;
} }
$this->_view->content = DidgeridooArtwork_Page_Plugin::render($this->_view->content); $this->_view->content = DidgeridooArtwork_Page_Plugin::render($this->_view->content);
$content = $this->_view->render('page/post'); $content = $this->_view->render('Page/post');
$this->_view->stageContent = $content; $this->_view->stageContent = $content;
echo $this->_view->render('main'); echo $this->_view->render('main');
die(); die();