Index: trunk/extensions/SemanticForms/specials/SF_FormEdit.php |
— | — | @@ -373,10 +373,7 @@ |
374 | 374 | $text .= self::printAltFormsList( $alt_forms, $target_name ); |
375 | 375 | $text .= "</div>\n"; |
376 | 376 | } |
377 | | - $text .= <<<END |
378 | | - <form name="createbox" id="sfForm" action="" method="post" class="createbox"> |
379 | | - |
380 | | -END; |
| 377 | + $text .= '<form name="createbox" id="sfForm" method="post" class="createbox">'; |
381 | 378 | $pre_form_html = ''; |
382 | 379 | wfRunHooks( 'sfHTMLBeforeForm', array( &$target_title, &$pre_form_html ) ); |
383 | 380 | $text .= $pre_form_html; |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaInput.php |
— | — | @@ -99,6 +99,7 @@ |
100 | 100 | $textarea_attrs['cols'] = 90; |
101 | 101 | $textarea_attrs['style'] = 'width: auto'; |
102 | 102 | } else { |
| 103 | + $textarea_attrs['cols'] = 90; |
103 | 104 | $textarea_attrs['style'] = 'width: 100%'; |
104 | 105 | } |
105 | 106 | |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaWithAutocompleteInput.php |
— | — | @@ -110,6 +110,7 @@ |
111 | 111 | $textarea_attrs['cols'] = 90; |
112 | 112 | $textarea_attrs['style'] = 'width: auto'; |
113 | 113 | } else { |
| 114 | + $textarea_attrs['cols'] = 90; |
114 | 115 | $textarea_attrs['style'] = 'width: 100%'; |
115 | 116 | } |
116 | 117 | |