summaryrefslogtreecommitdiffstats
path: root/controllers
diff options
context:
space:
mode:
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');
}
}