Really small html validator error in xml file.
line 248
Code:
if (defined('PEM_CSS'))
{
$template_hook['custom_css_links'] = str_replace('pem&sheet=',"pem&sheet=$cssname,",$template_hook['custom_css_links']);
}
else
{
define('PEM_CSS',true);
$userstyle = $vbulletin->userinfo['styleid'];
$template_hook['custom_css_links'] .= "\n<link rel=\"stylesheet\" type=\"text/css\" href=\"css.php?pem&sheet=$cssname&styleid=$userstyle\" />";
}
should be
Code:
if (defined('PEM_CSS'))
{
$template_hook['custom_css_links'] = str_replace('pem&sheet=',"pem&sheet=$cssname,",$template_hook['custom_css_links']);
}
else
{
define('PEM_CSS',true);
$userstyle = $vbulletin->userinfo['styleid'];
$template_hook['custom_css_links'] .= "\n<link rel=\"stylesheet\" type=\"text/css\" href=\"css.php?pem&sheet=$cssname&styleid=$userstyle\" />";
}