summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Barnes <eric@ericlbarnes.com>2012-07-29 07:21:53 +0200
committerEric Barnes <eric@ericlbarnes.com>2012-07-29 07:21:53 +0200
commit49d2f304d4bb9c04c41c34f4675813b9d8ac3204 (patch)
treecfe86860d3af5ead77bacda9794a4aad7f8925f1
parent6d953a8ff137d1d8b9bfe1f50328e5b64542c7b8 (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.php5
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');
}
}