diff options
author | vlakoff <vlakoff@gmail.com> | 2012-07-15 12:57:38 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2012-07-15 12:57:38 +0200 |
commit | e40e56f9bc77665b4b55549bd753424b770e3dfd (patch) | |
tree | 066758a9a6a1f498b2c55c2911b62a6b75640166 /index.php | |
parent | decc642f8c81dcf57e2e3217a44d5b1385163456 (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.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |