summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2012-07-15 12:57:38 +0200
committervlakoff <vlakoff@gmail.com>2012-07-15 12:57:38 +0200
commite40e56f9bc77665b4b55549bd753424b770e3dfd (patch)
tree066758a9a6a1f498b2c55c2911b62a6b75640166 /index.php
parentdecc642f8c81dcf57e2e3217a44d5b1385163456 (diff)
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.
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
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.