From bfe40b9d5943fe00b74e9f618161f2c4d16cab19 Mon Sep 17 00:00:00 2001 From: Pratik Joshi Date: Thu, 12 Dec 2013 11:36:29 +0530 Subject: [PATCH] CRM-13926 : FIX --- CRM/Event/Form/Registration/Register.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Event/Form/Registration/Register.php b/CRM/Event/Form/Registration/Register.php index b30edc7643..3e785fdf57 100644 --- a/CRM/Event/Form/Registration/Register.php +++ b/CRM/Event/Form/Registration/Register.php @@ -841,7 +841,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { } if ($self->_values['event']['is_monetary']) { - if ($fields['amount'] > 0 && !isset($fields['payment_processor'])) { + if (empty($self->_requireApproval) && $fields['amount'] > 0 && !isset($fields['payment_processor'])) { $errors['payment_processor'] = ts('Please select a Payment Method'); } if (is_array($self->_paymentProcessor)) { -- 2.25.1