From ea099d3a6cb30867c29b833fca5cac40fb110ec6 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Thu, 8 Jul 2010 17:22:47 -0400 Subject: [PATCH] Revert "need to ucfirst() the $app name when using it as a class name part." This reverts commit 8c00d6c96fca1c435b98dff42d203a304d45af4d. --- framework/Core/lib/Horde/Registry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Core/lib/Horde/Registry.php b/framework/Core/lib/Horde/Registry.php index 2f4567ff2..3f2f07fd7 100644 --- a/framework/Core/lib/Horde/Registry.php +++ b/framework/Core/lib/Horde/Registry.php @@ -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; } -- 2.11.0