1
0
Fork 0

Make installer type case insensitive

pull/77/merge
Jordi Boggiano 2011-10-30 22:01:37 +01:00
parent e00e6cddbe
commit 8aaac35ca1
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,8 @@ class InstallationManager
*/
public function getInstaller($type)
{
$type = strtolower($type);
if (isset($this->cache[$type])) {
return $this->cache[$type];
}