Index: trunk/extensions/SemanticForms/includes/SF_FormField.inc |
— | — | @@ -112,9 +112,9 @@ |
113 | 113 | $semantic_type == $url_type || |
114 | 114 | $semantic_type == $email_type) { |
115 | 115 | if ($is_list) { |
116 | | - return array('text', 'textarea'); |
| 116 | + return array('text', 'textarea', 'categories'); |
117 | 117 | } else { |
118 | | - return array('text'); |
| 118 | + return array('text', 'category'); |
119 | 119 | } |
120 | 120 | } elseif ($semantic_type == $text_type || $semantic_type == $code_type) { |
121 | 121 | return array('textarea'); |
— | — | @@ -135,7 +135,7 @@ |
136 | 136 | return array('text'); |
137 | 137 | } |
138 | 138 | } else { // blank or an unknown type |
139 | | - return array('text', 'textarea', 'checkbox', 'date', 'datetime', 'datetime with timezone'); |
| 139 | + return array('text', 'textarea', 'checkbox', 'date', 'datetime', 'datetime with timezone', 'category', 'categories'); |
140 | 140 | } |
141 | 141 | } |
142 | 142 | |