summaryrefslogtreecommitdiffstats
path: root/application/controllers/user.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-01-09 19:34:01 +0100
committerFlorian Pritz <bluewind@xinu.at>2013-01-09 19:41:45 +0100
commit816fb94c8f5e29d6dd0c7044fa3c59eb3910ed7b (patch)
treee7c050b5357dbca018e48d1b8853cda96c9cdac9 /application/controllers/user.php
parent600a9ca4720a7a8b9fa875f2726be301d7169e7e (diff)
Fix some indentation issues
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/controllers/user.php')
-rw-r--r--application/controllers/user.php10
1 files changed, 5 insertions, 5 deletions
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");