From 3c30c51ed9942040ee11ba9e833e0de80cb68ca3 Mon Sep 17 00:00:00 2001 From: Shemona Singh Date: Mon, 4 Dec 2017 12:32:24 -0500 Subject: [PATCH] user page --- www/application/controllers/User_Tweets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/application/controllers/User_Tweets.php b/www/application/controllers/User_Tweets.php index ea30205..3f202b6 100644 --- a/www/application/controllers/User_Tweets.php +++ b/www/application/controllers/User_Tweets.php @@ -9,7 +9,7 @@ function __Construct(){ } public function index(){ - $this->data['posts'] = $this->Users_Tweets_Model2->getPosts(); + $this->data['posts'] = $this->User_Tweets_Model->getPosts(); $this->load->view('user', $this->data); } }