From a29bc2fbf1ef6637f6d3b3578726f40326082e21 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Mon, 10 May 2004 08:37:51 +0000 Subject: [PATCH] A formatting change to help track down that phantom line 760 error. git-svn-id: http://svn.automattic.com/wordpress/trunk@1260 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-xmlrpc.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-xmlrpc.php b/wp-includes/class-xmlrpc.php index c92396050..e5d967248 100644 --- a/wp-includes/class-xmlrpc.php +++ b/wp-includes/class-xmlrpc.php @@ -757,8 +757,9 @@ class xmlrpcmsg { if ($_xh[$parser]['isf']) { $f=$v->structmem("faultCode"); $fs=$v->structmem("faultString"); - $r=new xmlrpcresp($v, $f->scalarval(), - $fs->scalarval()); + $r=new xmlrpcresp($v, + $f->scalarval(), + $fs->scalarval()); } else { $r=new xmlrpcresp($v); }