From 4985c5ad7d98cdb9af2ba3470126e4471903ce0a Mon Sep 17 00:00:00 2001 From: Niko Sams Date: Fri, 23 May 2014 10:27:21 +0200 Subject: [PATCH] fix usage with composer loader where zend is not in include path --- library/Zend/Uri.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Zend/Uri.php b/library/Zend/Uri.php index 13f909f..35ef8e0 100644 --- a/library/Zend/Uri.php +++ b/library/Zend/Uri.php @@ -134,7 +134,7 @@ public static function factory($uri = 'http', $className = null) // require_once 'Zend/Loader.php'; try { - Zend_Loader::loadClass($className); +// Zend_Loader::loadClass($className); } catch (Exception $e) { // require_once 'Zend/Uri/Exception.php'; throw new Zend_Uri_Exception("\"$className\" not found");