News:

Looking for documentation? Take a look on our wiki

Main Menu

Markup bugfix

Started by OpenGlobal, June 06, 2012, 12:30:49 PM

Previous topic - Next topic

OpenGlobal

I've spotted a spurious character causing a markup error in administrator/components/com_virtuemart/helpers/vmmodel.php in getLimitBox():


$js = 'onchange="window.top.location.href=this.options[this.selectedIndex].value">';


should be:


$js = 'onchange="window.top.location.href=this.options[this.selectedIndex].value"';


The extra diamond bracket ends up outputting this:


<select name="" class="inputbox" size="1" onchange="window.top.location.href=this.options[this.selectedIndex].value">>


OpenGlobal