diff options
author | Eric Barnes <eric@ericlbarnes.com> | 2012-07-29 07:21:53 +0200 |
---|---|---|
committer | Eric Barnes <eric@ericlbarnes.com> | 2012-07-29 07:21:53 +0200 |
commit | 49d2f304d4bb9c04c41c34f4675813b9d8ac3204 (patch) | |
tree | cfe86860d3af5ead77bacda9794a4aad7f8925f1 | |
parent | 6d953a8ff137d1d8b9bfe1f50328e5b64542c7b8 (diff) |
Fixed messed up welcome controller.
Not sure how to revert this.
Signed-off-by: Eric Barnes <eric@ericlbarnes.com>
-rw-r--r-- | application/controllers/welcome.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/application/controllers/welcome.php b/application/controllers/welcome.php index 9aaab14ad..1ed82d2a7 100644 --- a/application/controllers/welcome.php +++ b/application/controllers/welcome.php @@ -44,10 +44,7 @@ class Welcome extends CI_Controller { */ public function index() { - $this->load->helper('html'); - echo img('test.png', FALSE, array('class' => 'foo')); - - // $this->load->view('welcome_message'); + $this->load->view('welcome_message'); } } |