From 35b45a559472a660dc08a3bc518161e7ab400175 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 8 Apr 2012 23:31:32 +0200 Subject: more user changes Signed-off-by: Florian Pritz --- application/controllers/user.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'application/controllers/user.php') diff --git a/application/controllers/user.php b/application/controllers/user.php index 4dc92bea2..c4085a8f6 100644 --- a/application/controllers/user.php +++ b/application/controllers/user.php @@ -16,6 +16,7 @@ class User extends CI_Controller { $this->load->helper('form'); $this->var->view_dir = "user/"; + $this->data['username'] = $this->muser->get_username(); } function index() @@ -47,6 +48,7 @@ class User extends CI_Controller { if ($uri) { redirect($uri); } else { + $this->data['username'] = $this->muser->get_username(); $this->load->view($this->var->view_dir.'header', $this->data); $this->load->view($this->var->view_dir.'login_successful', $this->data); $this->load->view($this->var->view_dir.'footer', $this->data); -- cgit v1.2.3-24-g4f1b