PHP Code:
strip_quotes();
htmlspecialchars_uni();
fetch_censored_text();
strip_bbcode();
Those are all vbulletin functions, yeah? For simple testing, I tried using just the strip_quotes function on its own:
PHP Code:
$lastxdevel1[pagetext] = strip_quotes($lastxdevel1[pagetext]);
That line of code has no effect on how the javascript mouseover handles $lastxdevel1[pagetext]. As if the function weren't doing anything at all. To test this, I'm using a thread that has all normal characters in the title, but a single quote at the beginning of the post.
Does strip_quotes(); need to be redefined from within the plugin?