summaryrefslogtreecommitdiffstats
path: root/controllers
diff options
context:
space:
mode:
authorMichael Francis <edude03@gmail.com>2011-06-20 22:12:40 -0400
committerMichael Francis <edude03@gmail.com>2011-06-20 22:12:40 -0400
commit23ff8bcdaabf3536d1ec61a2bba6c1465dbe5c43 (patch)
treeefbb2adf3f05d29f0dd819b124a539deb6b1fab4 /controllers
parent039b8ad34c3a15d73df89b444dadb487e26a108a (diff)
downloadotakuhub-23ff8bcdaabf3536d1ec61a2bba6c1465dbe5c43.tar.xz
Stopped using a custom layout for feed
Diffstat (limited to 'controllers')
-rw-r--r--controllers/UsersController.php2
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');
}
}