From 751403513249d9f36dd22809b8a28f26a77f3f9c Mon Sep 17 00:00:00 2001 From: sleewok Date: Thu, 13 Oct 2016 15:00:45 -0400 Subject: [PATCH] Update Entry.php More style fixes --- CRM/Batch/Form/Entry.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CRM/Batch/Form/Entry.php b/CRM/Batch/Form/Entry.php index 1a4f72f244..60e0f58aac 100644 --- a/CRM/Batch/Form/Entry.php +++ b/CRM/Batch/Form/Entry.php @@ -238,16 +238,16 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form { } } } - + // CRM-19477: Display Error for Batch Sizes Exceeding php.ini max_input_vars // Notes: $this->_elementIndex gives an approximate count of the variables being sent - // An offset value is set to deal with additional vars that are likely passed. + // An offset value is set to deal with additional vars that are likely passed. // There may be a more accurate way to do this... $offset = 50; // set an offset to account for other vars we are not counting - if((count($this->_elementIndex) + $offset) > ini_get("max_input_vars")) { - CRM_Core_Error::fatal(ts('Batch size is too large. Increase value of php.ini setting "max_input_vars" (current val = '. ini_get("max_input_vars").')')); + if ((count($this->_elementIndex) + $offset) > ini_get("max_input_vars")) { + CRM_Core_Error::fatal(ts('Batch size is too large. Increase value of php.ini setting "max_input_vars" (current val = ' . ini_get("max_input_vars") . ')')); } - + $this->assign('fields', $this->_fields); CRM_Core_Resources::singleton() ->addSetting(array( -- 2.25.1