diff options
author | lpsolit%gmail.com <> | 2006-12-31 04:53:52 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-12-31 04:53:52 +0100 |
commit | 373f33fabc6d495d197fcf0a997b716d61f1e16d (patch) | |
tree | 5028ea6bc86ca807e55d46957ee038ca7d7b761d /userprefs.cgi | |
parent | 56a98b2af24af47f667dd290b2be102755fd634f (diff) | |
download | bugzilla-373f33fabc6d495d197fcf0a997b716d61f1e16d.tar.gz bugzilla-373f33fabc6d495d197fcf0a997b716d61f1e16d.tar.xz |
Bug 365407: Reorder tabs in userprefs.cgi - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=justdave
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-x | userprefs.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userprefs.cgi b/userprefs.cgi index 14746ada1..8e4cf5576 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -506,7 +506,7 @@ $cgi->param('Bugzilla_password', $bugzilla_password); $vars->{'changes_saved'} = $cgi->param('dosave'); -my $current_tab_name = $cgi->param('tab') || "account"; +my $current_tab_name = $cgi->param('tab') || "settings"; # The SWITCH below makes sure that this is valid trick_taint($current_tab_name); |