From cd405f85436cba65c8e52333279bf9ea9852cb9a Mon Sep 17 00:00:00 2001 From: Eike Foken Date: Sat, 16 Apr 2011 17:42:57 +0200 Subject: [PATCH] Add some comments --- application/controllers/auth.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/application/controllers/auth.php b/application/controllers/auth.php index 9a06eec..7fa3275 100755 --- a/application/controllers/auth.php +++ b/application/controllers/auth.php @@ -1,11 +1,22 @@ + */ class Auth extends CI_Controller { + /** + * Shows the index page. + */ public function index() { $this->load->view('auth/login'); } + /** + * Logs the user in - or not ;-) + */ public function do_login() { echo "{success: true}"; }