Closed (works as designed)
Project:
Shoutbox
Version:
master
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
15 Jun 2008 at 19:14 UTC
Updated:
30 Aug 2011 at 03:49 UTC
It's more simple for users to write in a multilines textarea than a single line textfield.
In file shoutbox.module, line 480, replace:
$form['message'] = array(
'#type' => 'textfield',
'#default_value' => $default_msg,
'#size' => 15,
);By:
$form['message'] = array(
'#type' => 'textarea',
'#default_value' => $default_msg,
'#cols' => 15,
'#rows' => 4,
);
Comments
Comment #1
disterics commentedDeferred till next release
Comment #2
disterics commentedThere doesn't seem to be much interest. In addition, this can be done with a theme function.