From e40e56f9bc77665b4b55549bd753424b770e3dfd Mon Sep 17 00:00:00 2001 From: vlakoff Date: Sun, 15 Jul 2012 12:57:38 +0200 Subject: Fix in index.php inline documentation $routing['controller'] has to respect the capitalization of the filename, which is in lowercase. Otherwise, the application fails on case-sensitive servers. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.php') diff --git a/index.php b/index.php index 4955437bf..107a2095b 100644 --- a/index.php +++ b/index.php @@ -135,7 +135,7 @@ switch (ENVIRONMENT) // if your controller is not in a sub-folder within the "controllers" folder // $routing['directory'] = ''; - // The controller class file name. Example: Mycontroller + // The controller class file name. Example: mycontroller // $routing['controller'] = ''; // The controller function you wish to be called. -- cgit v1.2.3-24-g4f1b