1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-18 21:41:29 +02:00

Bugtracker #4370 - notice removal

This commit is contained in:
e107steved
2008-04-05 08:39:37 +00:00
parent d9d4c5ab63
commit 5df41b26d0

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_files/shortcode/batch/bbcode_shortcodes.php,v $
| $Revision: 1.5 $
| $Date: 2007-06-13 19:36:31 $
| $Revision: 1.6 $
| $Date: 2008-04-05 08:39:32 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -77,6 +77,9 @@ if(!isset($iconpath[$parm]))
}
if (!empty($register_bb))
{
foreach($register_bb as $key=>$val) // allow themes to plug in to it.
{
if($val[0]=="")
@@ -86,8 +89,11 @@ foreach($register_bb as $key=>$val) // allow themes to plug in to it.
$bbcode[$key] = $val;
$iconpath[$key] = $val[3];
}
}
if (!empty($eplug_bb))
{
foreach($eplug_bb as $key=>$val) // allow plugins to plug into it.
{
extract($val);
@@ -95,6 +101,7 @@ foreach($eplug_bb as $key=>$val) // allow plugins to plug into it.
$bbcode[$name] = array($onclick,$onclick_var,$helptext,$icon,$function,$function_var);
$iconpath[$name] = $icon;
}
}
$_onclick_func = (isset($bbcode[$parm][0])) ? $bbcode[$parm][0] : $bbcode_func;