summaryrefslogtreecommitdiffstats
path: root/system/core/Loader.php
diff options
context:
space:
mode:
authorGreg Aker <greg.aker@ellislab.com>2010-03-28 08:07:09 +0200
committerGreg Aker <greg.aker@ellislab.com>2010-03-28 08:07:09 +0200
commitd25e66a1824a70c5a2ebfae69b759c3b8a2d02a6 (patch)
treeda3b7c755a6492d573f3f292e1583ad4e48dd3df /system/core/Loader.php
parent6c1294b5c3c98e26eaa6cb5eaa83dd3921a30348 (diff)
Change in the loader and driver docs to force ucfirst() on driver directory names to ensure compatibility on case sensitive file systems.
Diffstat (limited to 'system/core/Loader.php')
-rw-r--r--system/core/Loader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php
index 976823f81..292fdc955 100644
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -506,7 +506,7 @@ class CI_Loader {
// and typically identically named to the library
if ( ! strpos($library, '/'))
{
- $library = $library.'/'.$library;
+ $library = ucfirst($library).'/'.$library;
}
return $this->library($library, $params, $object_name);