Mam problem z nowym kodem bbcode
dodałem nowy bbcode [TESTT] z jednym warunkiem
in includes/class_bbcode.php
before:
function handle_bbcode_img_match($link)
add:
Kod php:
function handle_bbcode_testt($code)
{
global $vbulletin, $vbphrase, $stylevar, $show;
if ($vbulletin->userinfo['userid'] == '0')
{
return 'code 1';
}
else
{
return 'code 2';
}
}
and before:
($hook = vBulletinHook::fetch_hook('bbcode_fetch_tags')) ? eval($hook) : false;
ADD
Kod php:
if ($vbulletin->options['allowedbbcodes'])
{
//[TESTT]
$tag_list['no_option']['testt'] = array(
'callback' => 'handle_bbcode_testt',
'strip_empty' => true,
'disable_smilies' => true,
'disable_wordwrap' => true,
'strip_space_after' => 2
);
}
Problem wystepuje gdy ktos napisze
[testt]something[/testt]
i po tym chce przelaczyć się do trybu WYSIGW ()
tagi znikają i pozostaje tylko zawartosc warunku dla tagu !