Quote:
Originally Posted by DementedMindz
switched from topxstats since this is updated and supported more but Cybernetec can you clean the code up to make it Valid XHTML most of it is with images not being closed.
find
Code:
$newpostprefix = '<img border="0" alt="'.$vbphrase['new'].'" src="'.$vbulletin->options['cybtopstats_prefix_new'].'">';
$oldpostprefix = '<img border="0" alt="'.$vbphrase['old'].'" src="'.$vbulletin->options['cybtopstats_prefix_old'].'">';
switch to this
Code:
$newpostprefix = '<img border="0" alt="'.$vbphrase['new'].'" src="'.$vbulletin->options['cybtopstats_prefix_new'].'" />';
$oldpostprefix = '<img border="0" alt="'.$vbphrase['old'].'" src="'.$vbulletin->options['cybtopstats_prefix_old'].'" />';
working on the other ones now
|
You found this in the XML file?