Revert "need to ucfirst() the $app name when using it as a class name part."
authorMichael J. Rubinsky <mrubinsk@horde.org>
Thu, 8 Jul 2010 21:22:47 +0000 (17:22 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Thu, 8 Jul 2010 21:22:47 +0000 (17:22 -0400)
This reverts commit 8c00d6c96fca1c435b98dff42d203a304d45af4d.

framework/Core/lib/Horde/Registry.php

index 2f4567f..3f2f07f 100644 (file)
@@ -1437,7 +1437,7 @@ class Horde_Registry
         if (!is_null($fileroot) &&
             is_dir($fileroot . '/lib/' . $fileprefix)) {
             foreach (scandir($fileroot . '/lib/' . $fileprefix) as $file) {
-                $classname = Horde_String::ucfirst($app) . '_' . $prefix . '_' . basename($file, '.php');
+                $classname = $app . '_' . $prefix . '_' . basename($file, '.php');
                 if (class_exists($classname)) {
                     $classes[] = $classname;
                 }