diff options
Diffstat (limited to 'handlers/bbcode.inc.php')
-rw-r--r-- | handlers/bbcode.inc.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/handlers/bbcode.inc.php b/handlers/bbcode.inc.php deleted file mode 100644 index e04d575..0000000 --- a/handlers/bbcode.inc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?PHP - require_once('code/message.inc.php'); - require_once('code/modules.inc.php'); - - require_mod('code/bbcode.inc.php'); - - class bbcode_template { - function Get($data) { - if($data['title']) - $title = strtr($data['title'], array('<' => '<', '>' => '>', '&' => '&', '"' => '"')); - else - $title = strtr($data['_page'], array(':' => ' - ')); - $content = '<h2>' . $title . '</h2>' . $GLOBALS['bbcode']->Parse($data['code']); - - return array('title' => $title, 'content' => $content); - } - } - - $GLOBALS['templates']['bbcode'] = new bbcode_template; -?> |