1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-10 16:46:50 +02:00

Partial fix for Issue #177

This commit is contained in:
Cameron
2013-04-24 03:53:02 -07:00
parent 976c386cf2
commit 0d93068439
5 changed files with 57 additions and 45 deletions

View File

@@ -483,7 +483,7 @@ class e_bbcode
// NEW bbcode button rendering function. replacing displayHelp();
function renderButtons($template,$id='')
function renderButtons($template, $id='', $options=array())
{
$tp = e107::getParser();
@@ -528,9 +528,9 @@ class e_bbcode
$data = array(
'tagid' => $id,
'template' => $template,
'trigger' => vartrue($addtextfunc),
// 'hint_func' => $helpfunc, // unused
// 'hint_active' => $bbcode_helpactive, // unused
'trigger' => vartrue($options['trigger']), // For BC
// 'hint_func' => $helpfunc, // deprecated and unused
// 'hint_active' => $bbcode_helpactive, // deprecated and unused
'size' => vartrue($helpsize)
);