'k, guess I'm still stuck
PHP Code:
$search = addslashes('<!-- / CSS Stylesheet -->');
$replace = addslashes('<!-- / CSS Stylesheet --> test 125345');
$vbulletin->templatecache['headinclude'] = str_replace($search, $replace.$search, $vbulletin->templatecache['headinclude']);
is working, but
PHP Code:
$search = addslashes('<!-- / CSS Stylesheet -->');
$replace = $vbulletin->templatecache['vbdock_facebox_headinclude'];
$vbulletin->templatecache['headinclude'] = str_replace($search, $replace.$search, $vbulletin->templatecache['headinclude']);
isn't.
Most likely just a typo, but any help would be more than appreciated!