diff options
author | redmatrix <git@macgirvin.com> | 2016-05-14 17:30:06 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-14 17:30:06 -0700 |
commit | 0800bd1e1927a2093bf2693762a9b6cef7ae529e (patch) | |
tree | 4393482a2f9325ad2b0bf77c092d6d9450e61e0c /boot.php | |
parent | 0503b11840d170a7f22d0392d08677c19b663ac2 (diff) | |
download | volse-hubzilla-0800bd1e1927a2093bf2693762a9b6cef7ae529e.tar.gz volse-hubzilla-0800bd1e1927a2093bf2693762a9b6cef7ae529e.tar.bz2 volse-hubzilla-0800bd1e1927a2093bf2693762a9b6cef7ae529e.zip |
we don't need to force case conversion on anything but the plugin name
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -636,7 +636,7 @@ class ZotlabsAutoloader { if($arr && count($arr) > 1) { if(! $arr[0]) $arr = array_shift($arr); - $filename = 'addon/' . lcfirst($arr[0]) . '/' . ucfirst($arr[1]) . ((count($arr) === 2) ? '.php' : '/' . ucfirst($arr[2]) . ".php"); + $filename = 'addon/' . lcfirst($arr[0]) . '/' . $arr[1] . ((count($arr) === 2) ? '.php' : '/' . $arr[2] . ".php"); if (file_exists($filename)) { include($filename); if (class_exists($className)) { |