diff options
author | Michael Francis <edude03@gmail.com> | 2011-06-20 22:12:40 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-06-20 22:12:40 -0400 |
commit | 23ff8bcdaabf3536d1ec61a2bba6c1465dbe5c43 (patch) | |
tree | efbb2adf3f05d29f0dd819b124a539deb6b1fab4 /controllers | |
parent | 039b8ad34c3a15d73df89b444dadb487e26a108a (diff) | |
download | otakuhub-23ff8bcdaabf3536d1ec61a2bba6c1465dbe5c43.tar.xz |
Stopped using a custom layout for feed
Diffstat (limited to 'controllers')
-rw-r--r-- | controllers/UsersController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/UsersController.php b/controllers/UsersController.php index 01ec06a..82f70a5 100644 --- a/controllers/UsersController.php +++ b/controllers/UsersController.php @@ -216,7 +216,7 @@ class UsersController extends \lithium\action\Controller { $feed = array_reverse($feed); //This renders a custom layout we use for the feed, then passes user and feed to the view for the variables. - $this->render(array('layout' => 'untitled', 'data' => compact('user', 'feed'))); + return compact('user', 'feed'); } } |