VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: OpenGlobal on June 06, 2012, 12:30:49 PM

Title: Markup bugfix
Post by: OpenGlobal on June 06, 2012, 12:30:49 PM
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