Fix wrong form name in location dropdown due to copy&paste action (#116)

This commit is contained in:
FrancescoUK
2016-03-07 22:47:40 +00:00
parent dfbab194de
commit 4403a6775a

View File

@@ -205,7 +205,7 @@ function post_bulk_form_submit(response)
if (count($stock_locations) > 1)
{
?>
<li class="float_left"><span><?php echo form_dropdown('stock_location', $stock_locations, $stock_location, array('id'=>'stock_location', 'onchange'=>"$('#mode_form').submit();", 'class'=>'selectpicker show-menu-arrow', 'data-style'=>'btn-default btn-sm', 'data-width'=>'fit')); ?></span></li>
<li class="float_left"><span><?php echo form_dropdown('stock_location', $stock_locations, $stock_location, array('id'=>'stock_location', 'onchange'=>"$('#search_form').submit();", 'class'=>'selectpicker show-menu-arrow', 'data-style'=>'btn-default btn-sm', 'data-width'=>'fit')); ?></span></li>
<?php
}
?>