From: Tim Mallezie Date: Mon, 30 Mar 2015 07:18:14 +0000 (+0200) Subject: remove cols from addfield X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c51f51ecd8801f57287f28607aa00fb3c6728fd7;p=civicrm-core.git remove cols from addfield --- diff --git a/CRM/Contact/Form/Edit/Notes.php b/CRM/Contact/Form/Edit/Notes.php index 2aa1285fe3..db31ca5dee 100644 --- a/CRM/Contact/Form/Edit/Notes.php +++ b/CRM/Contact/Form/Edit/Notes.php @@ -43,7 +43,7 @@ class CRM_Contact_Form_Edit_Notes { public static function buildQuickForm(&$form) { $form->applyFilter('__ALL__', 'trim'); $form->addField('subject', array('entity' => 'note', 'size' => 60, 'maxlength' => 254)); - $form->addField('note', array('entity' => 'note', 'cols' => 60, 'rows' => 3)); + $form->addField('note', array('entity' => 'note', 'rows' => 3)); } }