Remove $single= parameter name from function call.

This commit is contained in:
Michael Stenta 2020-08-27 08:33:11 -04:00
parent 06735fc3ce
commit 6631de0530
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ function farm_livestock_weight($asset) {
function farm_livestock_weight_all($asset) {
// Load the logs with a 'weight' quantity measurement for this asset.
$logs = farm_quantity_log_asset($asset, 'weight', NULL, REQUEST_TIME, TRUE, 'farm_observation', $single=FALSE);
$logs = farm_quantity_log_asset($asset, 'weight', NULL, REQUEST_TIME, TRUE, 'farm_observation', FALSE);
// Start array of log weights.
$log_weights = array();