diff options
Diffstat (limited to 'core/controllers')
-rw-r--r-- | core/controllers/welcome.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/welcome.php b/core/controllers/welcome.php index 672252eb..061a4176 100644 --- a/core/controllers/welcome.php +++ b/core/controllers/welcome.php @@ -20,7 +20,7 @@ class Welcome_Controller extends Template_Controller { public $template = 'welcome.html'; - function Index() { + function index() { $this->template->syscheck = new View('welcome_syscheck.html'); $this->template->syscheck->errors = $this->_get_config_errors(); $this->_create_directories(); @@ -77,7 +77,7 @@ class Welcome_Controller extends Template_Controller { return $errors; } - function _error_handler() { + function _error_handler($x) { } function _create_directories() { |