Actually you were right it is not the style..
I discovered the style also had this in the test version
I wanted to integrate wordpress headers in the vbulletin forum so I activated a plugin to call the header info from wordpress...
this works as you can see on the site.. but apparantly somehow a trailing slash gets added when using ' " or editting smileys ..?
anyone any idea ?
when I disable the plugin everything works fine..but I need the plugin to get a header/logo/ in the forum
this is the code in the plugin that calls the header from wordpress
ob_start();
include($_SERVER['DOCUMENT_ROOT'].'/wp-load.php');
include($_SERVER['DOCUMENT_ROOT'].'/wp-content/themes/gazette/header.php');
$wp_header = ob_get_contents();
|