From 99f62a6d8c6224dacc7ed4d6f15a45b9e8cb9d82 Mon Sep 17 00:00:00 2001 From: Michael Stenta Date: Fri, 1 May 2015 08:49:50 -0400 Subject: [PATCH] Issue #2481373: Fixed error when assigning new asset location. --- farm_log.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/farm_log.module b/farm_log.module index 01526739b..d1dbd4704 100644 --- a/farm_log.module +++ b/farm_log.module @@ -564,7 +564,7 @@ function farm_log_asset_move_action(array $assets, $context = array()) { /** * Move farm asset(s) to an area. Creates a movement log. * - * @param array $assets + * @param array|FarmAsset $assets * Array of assets to include in the move. * @param int $area_id * The id of the area to move to. @@ -573,7 +573,7 @@ function farm_log_asset_move_action(array $assets, $context = array()) { * @param bool $done * Whether or not to mark the movement done. Default to FALSE. */ -function farm_log_move_assets(array $assets, $area_id, $timestamp, $done = FALSE) { +function farm_log_move_assets($assets, $area_id, $timestamp, $done = FALSE) { // If $assets isn't an array, wrap it. if (!is_array($assets)) {