Perhaps this is just my opinion, but the smilies expandable menu area should not show up above the username, subject, and body of replies/nodes.

It's a very simple change, find:

    $form['smileys'] = array(
      '#type' => 'fieldset',
      '#title' => t('Smileys'),
      '#collapsible' => TRUE,
      '#collapsed' => TRUE,
      '#weight' => 0,
    );

and replace with:

    $form['smileys'] = array(
      '#type' => 'fieldset',
      '#title' => t('Smileys'),
      '#collapsible' => TRUE,
      '#collapsed' => TRUE,
      '#weight' => 1,
    );

You'll note, all that changed was moving the weight to "1" instead of "0" which pushes it under the desired elements. This should be the default.

Comments

Gurpartap Singh’s picture

Assigned: Unassigned » Gurpartap Singh
Category: bug » feature
Status: Active » Fixed

This has been fixed to the extent that it should appear just above the textarea. Please have a look at the new code in DRUPAL-5 branch! Have fun!

http://drupal.org/cvs?commit=97297

Thanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

vinoth.3v’s picture

Version: 5.x-1.2-beta » 6.x-1.x-dev
Status: Closed (fixed) » Needs work

Please allow to adjust this weight from configuration page.