diff options
author | Ermal <eri@pfsense.org> | 2014-02-19 07:50:43 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2014-02-19 07:50:43 +0000 |
commit | 3e38084b4a93bc380f4f70a87ee7e1c8a1267668 (patch) | |
tree | 4deb62508c3d893eafda210f94314e3da5a48c71 | |
parent | 5a47e9b12e0561d5ee8ee67290fe3bc92d1f98a1 (diff) | |
download | pfsense-3e38084b4a93bc380f4f70a87ee7e1c8a1267668.zip pfsense-3e38084b4a93bc380f4f70a87ee7e1c8a1267668.tar.gz |
The msgbox is no longer needed since there will be a validation process per se
-rwxr-xr-x | usr/local/www/pkg_mgr.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/pkg_mgr.php b/usr/local/www/pkg_mgr.php index 1773021..dea82b8 100755 --- a/usr/local/www/pkg_mgr.php +++ b/usr/local/www/pkg_mgr.php @@ -255,7 +255,7 @@ include("head.inc"); ?> </td> <td valign="middle" class="list nowrap" width="17"> - <a onclick="return confirm('<?=gettext("Do you really want to install ".ucfirst($index['name'])." package?"); ?>')" href="pkg_mgr_install.php?id=<?=$index['name'];?>"><img <?=domTT_title(gettext("Install ".ucfirst($index['name'])." package."))?> src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" alt="add" /></a> + <a href="pkg_mgr_install.php?id=<?=$index['name'];?>"><img <?=domTT_title(gettext("Install ".ucfirst($index['name'])." package."))?> src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" alt="add" /></a> </td></tr> <?php endif; |