How to remove that slash \

danswano

New Member
After installing VBSEO Pro style, some areas got a slash inside phrases like:

What\'s Going On?

how to go arround this to remove it from all the forum areas.


thanks :)
 
Ok found out how:
Go to Plugin Manager > VBSEO Pro > edit global_complete > replace all of it with:
if(VBSEO_CT_APPLY)
{

if($vbulletin->options['vbseo_ct_autohx'])
{
$output = preg_replace('#(<td class="tcat"[^>]*?>)(.*?)(</td>)#ise', 'stripslashes("$1".preg_replace(\'#^(.*?<div[^>]*?>)?(.*?)(</div>.*)?$#is\', \'\$1<h4>\$2</h4>\$3\', "$2")."$3")', $output);
}

}
 
Back
Top