Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 1.10.6
-
Fix Version/s: 1.10.7
-
Component/s: Zend_File_Transfer
-
Labels:None
Description
Zend/File/Transfer/Adapter/Http.php
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.)
Fixed with r22564