Explorar o código

Zend_XmlRpc: fix a typo. [ZF-7676] related.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17796 44c647ce-9c0f-0410-b52a-842ac1e357ba
alexander %!s(int64=16) %!d(string=hai) anos
pai
achega
bae2ea8a9a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      library/Zend/XmlRpc/Server/System.php

+ 1 - 1
library/Zend/XmlRpc/Server/System.php

@@ -138,7 +138,7 @@ class Zend_XmlRpc_Server_System
                     $request->setParams($method['params']);
                     $response = $this->_server->handle($request);
                     if ($response->isFault()) {
-                        $falt = $response;
+                        $fault = $response;
                     } else {
                         $responses[] = $response->getReturnValue();
                     }