Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of git://git.zendframework.com/zf
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelkael committed Jul 21, 2010
2 parents 9c496b9 + 0fcf91c commit 50a5cf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HTTP extends AbstractAdapter
class Http extends AbstractAdapter
{
protected static $_callbackApc = 'apc_fetch';
protected static $_callbackUploadProgress = 'uploadprogress_get_info';
Expand Down Expand Up @@ -309,7 +309,7 @@ public static function getProgress($id = null)
throw new Transfer\Exception('Wether APC nor uploadprogress extension installed');
}

$session = 'Zend\File\Transfer\Adapter\HTTP\ProgressBar';
$session = 'Zend\File\Transfer\Adapter\Http\ProgressBar';
$status = array(
'total' => 0,
'current' => 0,
Expand Down
2 changes: 1 addition & 1 deletion test/Transfer/Adapter/HTTPTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public function testValidationOfPhpExtendsFormError()
}
}

class HTTPTestMockAdapter extends \Zend\File\Transfer\Adapter\HTTP
class HTTPTestMockAdapter extends \Zend\File\Transfer\Adapter\Http
{
public function __construct()
{
Expand Down

0 comments on commit 50a5cf9

Please sign in to comment.