Trim before decoding - http://mosquito.wordpress.org/view.php?id=654
git-svn-id: http://svn.automattic.com/wordpress/trunk@2139 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f495494b75
commit
5da9bc9933
|
@ -225,7 +225,7 @@ class IXR_Message {
|
|||
$valueFlag = true;
|
||||
break;
|
||||
case 'base64':
|
||||
$value = base64_decode($this->_currentTagContents);
|
||||
$value = base64_decode( trim($this->_currentTagContents) );
|
||||
$this->_currentTagContents = '';
|
||||
$valueFlag = true;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue