$ /includes/types.inc
# Message typo
$ /sql/alter2.2.php
+# Fixed false error on payment without allocation.
+$ /purchasing/supplier_payment.php
+ /sales/customer_payments.php
29-Sep-2009 Tom Hallman
! Changes in tags table structure, tags related security areas
}
$_SESSION['alloc']->amount = -input_num('amount');
- return check_allocations();
+
+ if (isset($_POST["TotalNumberOfAllocs"]))
+ return check_allocations();
+ else
+ return true;
}
//----------------------------------------------------------------------------------------
}
$_SESSION['alloc']->amount = input_num('amount');
- return check_allocations();
+
+ if (isset($_POST["TotalNumberOfAllocs"]))
+ return check_allocations();
+ else
+ return true;
}
//----------------------------------------------------------------------------------------------