From baffbfb2ad4f6c3f2e3ca7c52bd182540e396627 Mon Sep 17 00:00:00 2001 From: Michael J Rubinsky Date: Fri, 21 Jan 2011 10:40:12 -0500 Subject: [PATCH] Fix case. Did I mention how much I love mac's case insensitive fs? Grr.. --- hermes/lib/Injector/Factory/Driver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermes/lib/Injector/Factory/Driver.php b/hermes/lib/Injector/Factory/Driver.php index da9c44855..46c55f70e 100644 --- a/hermes/lib/Injector/Factory/Driver.php +++ b/hermes/lib/Injector/Factory/Driver.php @@ -41,7 +41,7 @@ class Hermes_Injector_Factory_Driver } else { throw new Horde_Exception('Using non-global db connection not yet supported.'); } - $class = 'Hermes_Driver_' . $driver; + $class = 'Hermes_Driver_' . Horde_String::ucfirst($driver); $this->_instances[$signature] = new $class($params); } -- 2.11.0