diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2016-01-15 09:47:47 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2016-01-15 09:47:47 -0500 |
commit | 19d5848c9be906e63521373cfb8e05187b8474d4 (patch) | |
tree | e362424a0af7724cb5108299f6bf477c8edb5e7d /src | |
parent | 22bd94fd2ba099d096d6173b465c84c3d8bf46c4 (diff) | |
download | pfsense-19d5848c9be906e63521373cfb8e05187b8474d4.zip pfsense-19d5848c9be906e63521373cfb8e05187b8474d4.tar.gz |
Correct failure banner color
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/pkg_mgr_install.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/usr/local/www/pkg_mgr_install.php b/src/usr/local/www/pkg_mgr_install.php index 9cad68d..5958783 100644 --- a/src/usr/local/www/pkg_mgr_install.php +++ b/src/usr/local/www/pkg_mgr_install.php @@ -533,6 +533,7 @@ function show_success() { // Display a failure banner function show_failure() { + $('#final').removeClass("alert-info"); $('#final').addClass("alert-danger"); if ("<?=$_POST['mode']?>" != "reinstallall") { $('#final').html("<?=$pkgid?>" + " " + "<?=$modetxt?>" + " " + "<?=gettext(' failed!')?>"); |