Kaynağa Gözat

Stopped using a custom layout for feed

Michael Francis 14 yıl önce
ebeveyn
işleme
23ff8bcdaa
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      controllers/UsersController.php

+ 1 - 1
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');
 		}
 		
 	}