From 816fb94c8f5e29d6dd0c7044fa3c59eb3910ed7b Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 9 Jan 2013 19:34:01 +0100 Subject: Fix some indentation issues Signed-off-by: Florian Pritz --- application/controllers/user.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'application/controllers/user.php') diff --git a/application/controllers/user.php b/application/controllers/user.php index 7e6b2f27e..0550b0f6a 100644 --- a/application/controllers/user.php +++ b/application/controllers/user.php @@ -25,13 +25,13 @@ class User extends CI_Controller { $this->load->model("muser"); $this->data["title"] = "FileBin"; - + $this->load->helper(array('form', 'filebin')); $this->var->view_dir = "user/"; $this->data['username'] = $this->muser->get_username(); } - + function index() { $this->data["username"] = $this->muser->get_username(); @@ -40,7 +40,7 @@ class User extends CI_Controller { $this->load->view($this->var->view_dir.'index', $this->data); $this->load->view('footer', $this->data); } - + function login() { $this->muser->require_session(); @@ -197,13 +197,13 @@ class User extends CI_Controller { $this->load->view($this->var->view_dir.'register', $this->data); $this->load->view('footer', $this->data); } - + function logout() { $this->muser->logout(); redirect('/'); } - + function hash_password() { $process = $this->input->post("process"); -- cgit v1.2.3-24-g4f1b