1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 13:17:24 +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,11 +56,14 @@ 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.
foreach($pref['e_bb_list'] as $val) if (!empty($pref['e_bb_list']))
{ {
if(is_readable(e_PLUGIN.$val."/e_bb.php")) foreach($pref['e_bb_list'] as $val)
{ {
require(e_PLUGIN.$val."/e_bb.php"); if(is_readable(e_PLUGIN.$val."/e_bb.php"))
{
require(e_PLUGIN.$val."/e_bb.php");
}
} }
} }