clean up fixes for batch 5
[civicrm-core.git] / CRM / Member / Form / Task / PickProfile.php
index 91ae8b9529ddf0cc57f08249eb84255df33557ed..5081749e1716fbb9e32340c5c9138b8f4cc5b627 100644 (file)
@@ -73,7 +73,7 @@ class CRM_Member_Form_Task_PickProfile extends CRM_Member_Form_Task {
     if (count($this->_memberIds) > $this->_maxMembers) {
       CRM_Core_Session::setStatus(ts("The maximum number of members you can select for Batch Update is %1. You have selected %2. Please select fewer members from your search results and try again.", array(
             1 => $this->_maxMembers,
-            2 => count($this->_memberIds)
+            2 => count($this->_memberIds),
           )), ts('Batch Update Error'), 'error');
       $validate = TRUE;
     }
@@ -101,7 +101,7 @@ class CRM_Member_Form_Task_PickProfile extends CRM_Member_Form_Task {
 
     $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'),
       array(
-        '' => ts('- select profile -')
+        '' => ts('- select profile -'),
       ) + $profiles, TRUE
     );
     $this->addDefaultButtons(ts('Continue'));