From 63277b81edde11b77ff94cbf1c3e5db16c97c4bf Mon Sep 17 00:00:00 2001 From: Greg Aker Date: Tue, 9 Nov 2010 13:46:13 -0600 Subject: Fix #62 Adding CI_ prefix to Controller. --- application/controllers/welcome.php | 4 ++-- system/core/CodeIgniter.php | 2 +- system/core/Controller.php | 6 +++--- user_guide/changelog.html | 1 + user_guide/general/controllers.html | 20 ++++++++++---------- 5 files changed, 17 insertions(+), 16 deletions(-) diff --git a/application/controllers/welcome.php b/application/controllers/welcome.php index 2e4cff8ed..3c2f7e1cf 100644 --- a/application/controllers/welcome.php +++ b/application/controllers/welcome.php @@ -1,10 +1,10 @@
  • Added ability to set "Package" paths - specific paths where the Loader and Config classes should try to look first for a requested file. This allows distribution of sub-applications with their own libraries, models, config files, etc. in a single "package" directory. See the Loader class documentation for more details.
  • In-development code is now hosted at BitBucket.
  • Removed the deprecated Validation Class.
  • +
  • Added CI_ Prefix to all core classes.
  • Libraries