minor fixes

This commit is contained in:
friendica 2012-02-27 23:19:25 -08:00
parent bce0e4f5a0
commit 4b35c8e140
2 changed files with 2 additions and 3 deletions

Binary file not shown.

View File

@ -174,8 +174,7 @@ function wppost_send(&$a,&$b) {
$post = xmlify($post);
$xml = <<< EOT
<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<methodCall>
<methodName>blogger.newPost</methodName>
<params>
@ -194,7 +193,7 @@ EOT;
if($wp_blog !== 'test')
$x = post_url($wp_blog,$xml);
logger('posted to wordpress: ' . ($x) ? $x : '');
logger('posted to wordpress: ' . (($x) ? $x : ''), LOGGER_DEBUG);
}
}