summaryrefslogtreecommitdiffstats
path: root/system/libraries/Javascript.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2013-01-28 15:27:30 +0100
committerAndrey Andreev <narf@bofh.bg>2013-01-28 15:27:30 +0100
commit3608e1a094945631c5b65e1f66460e4486c5b541 (patch)
tree7f65af257040b2f94d74772d718c4d73db725270 /system/libraries/Javascript.php
parent606fee0e2e0aa6a906db82e77090e91f133d7378 (diff)
Libraries' filenames must be named in a ucfirst-like manner
Diffstat (limited to 'system/libraries/Javascript.php')
-rw-r--r--system/libraries/Javascript.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Javascript.php b/system/libraries/Javascript.php
index 7f1d85511..773a58384 100644
--- a/system/libraries/Javascript.php
+++ b/system/libraries/Javascript.php
@@ -69,7 +69,7 @@ class CI_Javascript {
$this->CI =& get_instance();
// load the requested js library
- $this->CI->load->library('javascript/'.$js_library_driver, array('autoload' => $autoload));
+ $this->CI->load->library('Javascript/'.$js_library_driver, array('autoload' => $autoload));
// make js to refer to current library
$this->js =& $this->CI->$js_library_driver;