PDA

View Full Version : new bbcode - problem with switching in wysigw mode


bartek24m
03-18-2009, 08:43 AM
I have problem with my new bbcode
I add up new bbcode with one conditions:

in includes/class_bbcode.php

before: function handle_bbcode_img_match($link)
add:

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


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 is when my users write
[testt]something
and after that they try to look up by switching in WYSIGW mode (https://vborg.vbsupport.ru/external/2011/07/26.gif)

the tagss disapper ! and they get just code 2 ! :(

how to solve that issue

i need it couse when users click preview posts they get a code 2 in their messages and the conditionals dont work for guests

Marco van Herwaarden
03-18-2009, 08:57 AM
This will probably not work anyways as the post is evaluated, parsed and added to the post cache when the first person views the post. Further views of the post will use the cached version and not re-parse it.

Also it is normal behaviour that in WYSIWYG mode bb-codes are parsed and hidden.