1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 21:27:25 +02:00

Bugtracker #4369 - notice removal

This commit is contained in:
e107steved
2008-11-08 17:24:37 +00:00
parent d3798aff35
commit 7b14040068

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_handlers/ren_help.php,v $ | $Source: /cvs_backup/e107_0.8/e107_handlers/ren_help.php,v $
| $Revision: 1.5 $ | $Revision: 1.6 $
| $Date: 2008-09-18 19:12:44 $ | $Date: 2008-11-08 17:24:28 $
| $Author: e107steved $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -56,6 +56,8 @@ function display_help($tagid="helpb", $mode = 1, $addtextfunc = "addtext", $help
} }
// Load the Plugin bbcode AFTER the templates, so they can modify or replace. // Load the Plugin bbcode AFTER the templates, so they can modify or replace.
if (!empty($pref['e_bb_list']))
{
foreach($pref['e_bb_list'] as $val) foreach($pref['e_bb_list'] as $val)
{ {
if(is_readable(e_PLUGIN.$val."/e_bb.php")) if(is_readable(e_PLUGIN.$val."/e_bb.php"))
@@ -63,6 +65,7 @@ function display_help($tagid="helpb", $mode = 1, $addtextfunc = "addtext", $help
require(e_PLUGIN.$val."/e_bb.php"); require(e_PLUGIN.$val."/e_bb.php");
} }
} }
}
$temp['news'] = $BBCODE_TEMPLATE_NEWSPOST; $temp['news'] = $BBCODE_TEMPLATE_NEWSPOST;
$temp['submitnews'] = $BBCODE_TEMPLATE_SUBMITNEWS; $temp['submitnews'] = $BBCODE_TEMPLATE_SUBMITNEWS;