XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
li.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[] = "/\[li](.*)\[\/li\]/sU";
28  $ts->replacements[] = '<li>\\1</li>';
29  return true;
30  }
31 }
32 
33 ?>