import v1.1.0_RC2 | 2009-09-20
This commit is contained in:
@ -14,7 +14,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Controller
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
@ -41,9 +41,9 @@ require_once 'Zend/XmlRpc/Fault.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_XmlRpc
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Request.php 13223 2008-12-14 11:21:31Z thomas $
|
||||
* @version $Id: Request.php 17786 2009-08-23 22:26:33Z lars $
|
||||
*/
|
||||
class Zend_XmlRpc_Request
|
||||
{
|
||||
@ -326,7 +326,7 @@ class Zend_XmlRpc_Request
|
||||
$types = array();
|
||||
$argv = array();
|
||||
foreach ($xml->params->children() as $param) {
|
||||
if (! $param->value instanceof SimpleXMLElement) {
|
||||
if (!isset($param->value)) {
|
||||
$this->_fault = new Zend_XmlRpc_Fault(633);
|
||||
$this->_fault->setEncoding($this->getEncoding());
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user