diff options
Diffstat (limited to 'modules/path')
-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', |