Needs work
Project:
Smileys
Version:
6.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Feature request
Assigned:
Reporter:
Created:
29 Dec 2007 at 12:15 UTC
Updated:
9 May 2010 at 17:13 UTC
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
Comment #1
Gurpartap Singh commentedThis 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!
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #3
vinoth.3v commentedPlease allow to adjust this weight from configuration page.