// description
$tr = $table->appendElement('tr');
$tr->appendElement('th')->appendText(wfMessage('wrreport-newreport-description')->text());
- $tr->appendElement('td')->appendElement('textarea', array('name' => 'description', 'cols' => '50', 'rows' => '7'))->appendText($description);
+ $tr->appendElement('td')->appendElement('textarea', array('name' => 'description', 'class' => 'fullwidth', 'rows' => '7'))->appendText($description);
// author
$tr = $table->appendElement('tr');
$tr->appendElement('th')->appendText(wfMessage('wrreport-newreport-author')->text());
- $tr->appendElement('td')->appendElement('input', array('name' => 'author_name', 'maxlength' => '30', 'size' => '30', 'value' => $author_name));
+ $tr->appendElement('td')->appendElement('input', array('name' => 'author_name', 'class' => 'fullwidth', 'maxlength' => '30', 'value' => $author_name));
// Buttons
// I would like to do it this way, but due to a bug of internet explorer, the <button> element is not useable.