The Arcive of vBulletin Modifications Site. |
|
HTML Validation Bug - Crowns in Postbit - Plugin Details »»
|
|||||||||||||||||||||||||||
|
HTML Validation Bug - Crowns in Postbit - Plugin
Developer Last Online: May 2017
Hello all,
There is a small bug in the Crowns in Postbit plugin In summary if you select to not use the postbit marquees and only use static images a rogue </marquee> tag is left in the output html. This can be fixed by changing the following line in the plugin code: Code:
if ($crown['type'] != 0) Code:
if (($crown['type'] != 0) && ($crown['type'] != 3)) Find: Code:
$champtext = "<a href='arcade.php?do=viewtourneyend' target='_blank' alt=''>".$vbphrase[ibpa_tourney] . " <b>" . $tourneys[$post[userid]] . "</b></a><br />"; Code:
$champtext = "<a href='arcade.php?do=viewtourneyend' target='_blank'>".$vbphrase[ibpa_tourney] . " <b>" . $tourneys[$post[userid]] . "</b></a><br />"; Show Your Support
|
|||||||||||||||||||||||||||
![]() |
|
|