Index: wlw_blogapi.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wlw_blogapi/wlw_blogapi.module,v retrieving revision 1.16 diff -u -r1.16 wlw_blogapi.module --- wlw_blogapi.module 6 Jan 2009 06:31:46 -0000 1.16 +++ wlw_blogapi.module 27 Jan 2009 06:38:19 -0000 @@ -949,6 +949,7 @@ $text = str_replace('

 

', '', $text); $text = str_replace('

 

', '', $text); $text = str_replace('

', '', $text); + $text = str_replace('', '', $text); //$text = str_Replace('é', 'Ž', $text); //$text = str_Replace('é', 'Ž', $text); //watchdog('wlw_blogapi', 'func: _wlw_blogapi_filter_extra_code, text =
$text
', array('$text' => print_r($text, true))); @@ -980,8 +981,9 @@ else if ($node->comment == 2) { $comment = 1; } - $xmlrpcval['content'] = "$node->title$node->body"; - $xmlrpcval['description'] = $node->body; + $body = str_replace('', '', $node->body); + $xmlrpcval['content'] = "$node->title$body"; + $xmlrpcval['description'] = $body; // Add MT specific fields $xmlrpcval['mt_allow_comments'] = (int) $comment; $xmlrpcval['mt_convert_breaks'] = $node->format;