Download & Extend

Replace message textfield by textarea

Project:Shoutbox
Version:master
Component:Code
Category:feature request
Priority:normal
Assigned:disterics
Status:closed (works as designed)

Issue Summary

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

#1

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

Deferred till next release

#2

Assigned to:Anonymous» 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.