From c51f51ecd8801f57287f28607aa00fb3c6728fd7 Mon Sep 17 00:00:00 2001 From: Tim Mallezie Date: Mon, 30 Mar 2015 09:18:14 +0200 Subject: [PATCH] remove cols from addfield --- CRM/Contact/Form/Edit/Notes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } } -- 2.25.1