Move license to about controller

This commit is contained in:
Eike Foken
2011-09-21 00:30:20 +02:00
parent 3edd0ace88
commit 2eebdad87c
6 changed files with 44 additions and 87 deletions

View File

@@ -22,7 +22,7 @@
*/
/**
* Static about page.
* Static about pages.
*
* @author Karsten Heiken <karsten@disposed.de>
*/
@@ -36,7 +36,11 @@ class About extends MY_Controller {
}
public function index() {
$this->load->view('about');
$this->load->view('about/about');
}
public function license() {
$this->load->view('about/license');
}
}