diff options
author | Renato Botelho <renato@netgate.com> | 2016-06-08 14:17:30 -0400 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-06-08 19:03:52 -0400 |
commit | 6f5cef535fbddafcc8cc60b810b5854bf43c55e2 (patch) | |
tree | 38357acf5c876cadeb940fd98935939b603360cc | |
parent | b926fb222ccbea2948c1ef89b110366d6a469449 (diff) | |
download | pfsense-6f5cef535fbddafcc8cc60b810b5854bf43c55e2.zip pfsense-6f5cef535fbddafcc8cc60b810b5854bf43c55e2.tar.gz |
Improve readability
-rw-r--r-- | src/usr/local/www/pkg_mgr_install.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/usr/local/www/pkg_mgr_install.php b/src/usr/local/www/pkg_mgr_install.php index 771fe6c..e022146 100644 --- a/src/usr/local/www/pkg_mgr_install.php +++ b/src/usr/local/www/pkg_mgr_install.php @@ -268,11 +268,12 @@ if ($firmwareupdate || ($_POST['id'] == "firmware")) { include("head.inc"); -if (!empty($_POST['id']) || $pkgmode == "reinstallall") { - ?> +if (!empty($_POST['id']) || $pkgmode == "reinstallall"): +?> <div id="final" class="alert" role="alert" style="display: none;"></div> <?php -} +endif; + display_top_tabs($tab_array); if ($input_errors) { |