Modified to prevent stepping on the user's action if already set.

git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605@165 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-06-18 03:45:43 +00:00
parent 063aec6c3c
commit 9b6830468e

View File

@@ -77,7 +77,8 @@ $postData['fields'] = serialize(array_map(create_function('$col',
// Determine if we're to be using a custom list, or if
// the data will simply be action based.
if (isset($custom_ids)) {
$action = 'idlist';
if (!isset($action))
$action = 'idlist';
$postData['idlist'] = serialize($custom_ids);
}
elseif (!isset($action)) {