Skip to content
Snippets Groups Projects
Commit 8cda9960 authored by Prasad's avatar Prasad
Browse files

Merge branch '280' into 'master'

#280 - just a dollar lost - 6.4.0 and 6.5.0

into file include/utils/InventoryUtils.php, inside function getAllTaxes(...) {...} at line 264, lost a dollar

    if($mode == 'edit' && id != '') {

replace with

    if($mode == 'edit' && $id != '') {

See merge request !95
parents 45ca8bdd 01a37f17
No related branches found
No related tags found
No related merge requests found
......@@ -261,7 +261,7 @@ function getAllTaxes($available='all', $sh='',$mode='',$id='')
if($sh != '' && $sh == 'sh') {
$tablename = 'vtiger_shippingtaxinfo';
$value_table='vtiger_inventoryshippingrel';
if($mode == 'edit' && id != '') {
if($mode == 'edit' && $id != '') {
$sql = "SELECT * FROM $tablename WHERE deleted=0";
$result = $adb->pquery($sql, array());
$noofrows=$adb->num_rows($result);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment