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

disterics’s picture

Version: 5.x-1.x-dev » master

Deferred till next release

disterics’s picture

Assigned: Unassigned » disterics
Status: Needs review » Closed (works as designed)

There doesn't seem to be much interest. In addition, this can be done with a theme function.