projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1d46a6
)
remove cols from addfield
author
Tim Mallezie
<tim.mallezie@chiro.be>
Mon, 30 Mar 2015 07:18:14 +0000
(09:18 +0200)
committer
Tim Mallezie
<tim.mallezie@chiro.be>
Tue, 14 Apr 2015 14:38:10 +0000
(16:38 +0200)
CRM/Contact/Form/Edit/Notes.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Contact/Form/Edit/Notes.php
b/CRM/Contact/Form/Edit/Notes.php
index 2aa1285fe30bf0dd6c85dfa6535d9291f3af1324..db31ca5dee8178703f99c82e269046a57594c3ad 100644
(file)
--- 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));
}
}