From 6d884a3487f33e3ef6d324038f84af6ae8851821 Mon Sep 17 00:00:00 2001 From: kurund Date: Sat, 3 Aug 2013 03:00:22 +0530 Subject: [PATCH] fixed wrong PseudoConstant call --- CRM/Financial/Form/Export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Financial/Form/Export.php b/CRM/Financial/Form/Export.php index b9b989a10a..c72b02b816 100644 --- a/CRM/Financial/Form/Export.php +++ b/CRM/Financial/Form/Export.php @@ -95,7 +95,7 @@ class CRM_Financial_Form_Export extends CRM_Core_Form { $this->_batchIds = $this->_id; } - $allBatchStatus = CRM_Core_PseudoConstant::get('CRM_Financial_DAO_FinancialItem', 'status_id'); + $allBatchStatus = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id'); $this->_exportStatusId = CRM_Utils_Array::key('Exported', $allBatchStatus); //check if batch status is valid, do not allow exported batches to export again -- 2.25.1