minor fix
authorjitendrapurohit <jitendra.purohit@webaccessglobal.com>
Wed, 7 Oct 2015 07:18:22 +0000 (12:48 +0530)
committerjitendrapurohit <jitendra.purohit@webaccessglobal.com>
Wed, 7 Oct 2015 07:18:22 +0000 (12:48 +0530)
CRM/Core/Form.php

index 8b6f031aedbcfd86b2b7b93b6c391530cb1aed30..e22c212549e1cc66939622021d8077ff856cb5bf 100644 (file)
@@ -1460,7 +1460,9 @@ class CRM_Core_Form extends HTML_QuickForm_Page {
 
       //add support for 'Advcheckbox' field
       case 'advcheckbox':
-        return $this->addElement('advcheckbox', $name, NULL);
+        $text = isset($props['text']) ? $props['text'] : NULL;
+        unset($props['text']);
+        return $this->addElement('advcheckbox', $name, $label, $text, $props);
 
       case 'File':
         // We should not build upload file in search mode.