diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-12-15 16:24:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-12-15 16:24:40 +0000 |
commit | 922a46d28159737a61602876b961147f46428267 (patch) | |
tree | 395569ef52362721e2975658ca8a7362475d73c6 /modules/path/path.module | |
parent | 5accfa08f52a31da74715c38a1d7a12793fa33c7 (diff) | |
download | brdo-922a46d28159737a61602876b961147f46428267.tar.gz brdo-922a46d28159737a61602876b961147f46428267.tar.bz2 |
- Patch #34920 by Morbus/webchick/tangent: fixed order of form fields.
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index 1a7f7b9a4..3bcd9dadf 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -225,7 +225,8 @@ function path_form_alter($form_id, &$form) { '#type' => 'fieldset', '#title' => t('URL path settings'), '#collapsible' => TRUE, - '#collapsed' => TRUE, + '#collapsed' => empty($path), + '#weight' => 30, ); $form['path']['path'] = array( '#type' => 'textfield', |