[wp-cvs] wordpress/wp-includes class-IXR.php,1.4,1.5
Matthew Mullenweg
saxmatt at users.sourceforge.net
Mon Jan 24 09:53:26 GMT 2005
Update of /cvsroot/cafelog/wordpress/wp-includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1253/wp-includes
Modified Files:
class-IXR.php
Log Message:
Trim before decoding - http://mosquito.wordpress.org/view.php?id=654
Index: class-IXR.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-includes/class-IXR.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** class-IXR.php 18 Jan 2005 06:12:23 -0000 1.4
--- class-IXR.php 24 Jan 2005 09:53:23 -0000 1.5
***************
*** 226,230 ****
break;
case 'base64':
! $value = base64_decode($this->_currentTagContents);
$this->_currentTagContents = '';
$valueFlag = true;
--- 226,230 ----
break;
case 'base64':
! $value = base64_decode( trim($this->_currentTagContents) );
$this->_currentTagContents = '';
$valueFlag = true;
More information about the cvs
mailing list