XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
ul.php
Go to the documentation of this file.
1 <?php
21 defined('XOOPS_ROOT_PATH') or die('Restricted access');
22 
24 {
25  function load(&$ts)
26  {
27  $ts->patterns[] = "/\[ul](.*)\[\/ul\]/sU";
28  $ts->replacements[] = '<ul>\\1</ul>';
29  return true;
30  }
31 }
32 
33 ?>