reference correct note_columns field name in database
authorJeff Kellem <github-dist@beyond.dreams.org>
Thu, 30 Nov 2023 09:04:10 +0000 (01:04 -0800)
committerJeff Kellem <github-dist@beyond.dreams.org>
Thu, 30 Nov 2023 09:04:10 +0000 (01:04 -0800)
- civicrm_custom_field table has `note_rows` and `note_columns`, *not* `note_cols`
- Q: Should `cols` also be changed to `columns` on this line?

Civi/Api4/Service/Spec/SpecFormatter.php

index 73bcd7a6cf56959fd880d63fff40aefa68057122..b1b66b3c73bccb0a366ecb9de4ae35abe138d187 100644 (file)
@@ -320,7 +320,7 @@ class SpecFormatter {
       $inputAttrs['maxlength'] = (int) $data['maxlength'];
     }
     if ($inputType == 'TextArea') {
-      foreach (['rows', 'cols', 'note_rows', 'note_cols'] as $prop) {
+      foreach (['rows', 'cols', 'note_rows', 'note_columns'] as $prop) {
         if (!empty($data[$prop])) {
           $inputAttrs[str_replace('note_', '', $prop)] = (int) $data[$prop];
         }