summaryrefslogtreecommitdiffstats
path: root/system/application/controllers/welcome.php
blob: 9ab91d039a0fdfb51121573597565bdc6ed425ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

class Welcome extends Controller {

	function Welcome()
	{
		parent::Controller();	
	}
	
	function index()
	{
		$this->load->view('welcome_message');
		$this->load->view('fake');

	}
}

/* End of file welcome.php */
/* Location: ./system/application/controllers/welcome.php */