diff options
author | k-paulius <k.dash.paulius@gmail.com> | 2016-02-14 15:09:46 -0600 |
---|---|---|
committer | k-paulius <k.dash.paulius@gmail.com> | 2016-02-14 15:09:46 -0600 |
commit | 2b38c46bb6ca3cc6234c6433d63ba5360d061ccc (patch) | |
tree | d8e733211f5dc8abea3fd2f22d548a99f2443659 /src/usr/local | |
parent | 0f2981384f9d31c809a8a304eeb7170a86e91974 (diff) | |
download | pfsense-2b38c46bb6ca3cc6234c6433d63ba5360d061ccc.zip pfsense-2b38c46bb6ca3cc6234c6433d63ba5360d061ccc.tar.gz |
Switch tabs places so that active tab is the first tab
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/diag_backup.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/diag_confbak.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/diag_backup.php b/src/usr/local/www/diag_backup.php index 380bf62..6d3f415 100644 --- a/src/usr/local/www/diag_backup.php +++ b/src/usr/local/www/diag_backup.php @@ -616,8 +616,8 @@ if (is_subsystem_dirty('restore')): endif; $tab_array = array(); -$tab_array[] = array(gettext("Config History"), false, "diag_confbak.php"); $tab_array[] = array(htmlspecialchars(gettext("Backup & Restore")), true, "diag_backup.php"); +$tab_array[] = array(gettext("Config History"), false, "diag_confbak.php"); display_top_tabs($tab_array); $form = new Form(false); diff --git a/src/usr/local/www/diag_confbak.php b/src/usr/local/www/diag_confbak.php index 6353692..ac17e0a 100644 --- a/src/usr/local/www/diag_confbak.php +++ b/src/usr/local/www/diag_confbak.php @@ -140,8 +140,8 @@ if ($savemsg) { } $tab_array = array(); -$tab_array[] = array(gettext("Config History"), true, "diag_confbak.php"); $tab_array[] = array(htmlspecialchars(gettext("Backup & Restore")), false, "diag_backup.php"); +$tab_array[] = array(gettext("Config History"), true, "diag_confbak.php"); display_top_tabs($tab_array); if ($diff) { |