diff -r 5e7a0fedabdf -r 877f952ae2bd web/lib/Zend/XmlRpc/Value/BigInteger.php --- a/web/lib/Zend/XmlRpc/Value/BigInteger.php Thu Mar 21 17:31:31 2013 +0100 +++ b/web/lib/Zend/XmlRpc/Value/BigInteger.php Thu Mar 21 19:50:53 2013 +0100 @@ -1,4 +1,5 @@ _integer = new Zend_Crypt_Math_BigInteger(); - $this->_value = $this->_integer->init($this->_value); - + $integer = new Zend_Crypt_Math_BigInteger; + $this->_value = $integer->init($value); $this->_type = self::XMLRPC_TYPE_I8; } /** - * Return bigint value object + * Return bigint value * - * @return Zend_Crypt_Math_BigInteger + * @return string */ public function getValue() { - return $this->_integer; + return $this->_value; } -} +} \ No newline at end of file