?
Path : /home/admin/domains/happytokorea.com/public_html_bk/test3/plugins/content/ |
Current File : /home/admin/domains/happytokorea.com/public_html_bk/test3/plugins/content/IETableFix.php |
<?php defined('_JEXEC') or die( "Direct Access Is Not Allowed" ); jimport('joomla.event.plugin'); class plgContentIETableFix extends JPlugin { function plgContentIETableFix( &$subject ) { parent::__construct( $subject ); } function onPrepareContent(&$article, &$params, $limitstart) { $regex = "/<td>[\s]*?<\/td>/i"; $new = "<td> </td>"; $article->text = preg_replace($regex,$new, $article->text); return true; } }