From: Michael J Rubinsky Date: Fri, 21 Jan 2011 15:40:12 +0000 (-0500) Subject: Fix case. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=baffbfb2ad4f6c3f2e3ca7c52bd182540e396627;p=horde.git Fix case. Did I mention how much I love mac's case insensitive fs? Grr.. --- 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); }