FeedOnFeeds/plugins/fixdivs.php

12 lines
196 B
PHP
Raw Normal View History

2007-01-02 04:41:22 +03:00
<?php
fof_add_item_filter('fof_fixdivs');
function fof_fixdivs($text)
{
$text = str_ireplace('<div"', '<div "', $text);
$text = str_ireplace('<div ...', '', $text);
2007-01-02 04:41:22 +03:00
return $text;
}
?>