ZF-10154: [Zend_File_Transfer_Adapter_Http] Misspelling in exception message
Description
305: if (!function_exists('apc_fetch') and !function_exists('uploadprogress_get_info')) {
306: require_once 'Zend/File/Transfer/Exception.php';
307: throw new Zend_File_Transfer_Exception('Wether APC nor uploadprogress extension installed');
308: }
"Wether" on line #307 should probably be "Neither".
(Also, the "and" operator on line #305 could be changed to "&&" for consistency only.)
Comments
Posted by Thomas Weidner (thomas) on 2010-07-15T13:44:57.000+0000
Fixed with r22564