summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJared Dillard <jdillard@netgate.com>2015-11-20 12:37:58 -0600
committerJared Dillard <jdillard@netgate.com>2015-11-20 12:38:06 -0600
commit1aa84acb38a3c26b325ec1b99deb6b80ff32aa1c (patch)
treee82a6172b7180eb976d74b9085ad53f8ffdd0ab1 /src
parent8248f5e4dd7f6745d7feb3092bbc1655ef71af34 (diff)
downloadpfsense-1aa84acb38a3c26b325ec1b99deb6b80ff32aa1c.zip
pfsense-1aa84acb38a3c26b325ec1b99deb6b80ff32aa1c.tar.gz
clean up installed packages widget
Diffstat (limited to 'src')
-rw-r--r--src/usr/local/www/widgets/widgets/installed_packages.widget.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/local/www/widgets/widgets/installed_packages.widget.php b/src/usr/local/www/widgets/widgets/installed_packages.widget.php
index 871c2f6..17e9439 100644
--- a/src/usr/local/www/widgets/widgets/installed_packages.widget.php
+++ b/src/usr/local/www/widgets/widgets/installed_packages.widget.php
@@ -143,16 +143,16 @@ if($_REQUEST && $_REQUEST['ajax']) {
print( "</td>\n");
print( "<td>\n");
- print( '<a title="' . gettext("Remove") . '" href="pkg_mgr_install.php?mode=delete&amp;pkg=' . $pkg['name'] . '" class="fa fa-minus-circle"></a>');
+ print( '<a title="' . gettext("Remove") . '" href="pkg_mgr_install.php?mode=delete&amp;pkg=' . $pkg['name'] . '"><i class="fa fa-times"></i></a>'."\n");
if($upgradeavail) {
- print( '<a title="' . gettext("Update") . '" href="pkg_mgr_install.php?mode=reinstallpkg&amp;pkg=' . $pkg['name'] . $vergetstr . '" class="fa fa-refresh"></a>');
+ print( '<a title="' . gettext("Update") . '" href="pkg_mgr_install.php?mode=reinstallpkg&amp;pkg=' . $pkg['name'] . $vergetstr . '"><i class="fa fa-refresh"></i></a>'."\n");
} else {
- print( '<a title="' . gettext("Reinstall") . '" href="pkg_mgr_install.php?mode=reinstallpkg&amp;pkg=' . $pkg['name'] . '" class="fa fa-retweet"></a>');
+ print( '<a title="' . gettext("Reinstall") . '" href="pkg_mgr_install.php?mode=reinstallpkg&amp;pkg=' . $pkg['name'] . '"><i class="fa fa-retweet"></i></a>'."\n");
}
if(!isset($g['disablepackageinfo']) && $pkg['www'] != 'UNKNOWN') {
- print( '<a target="_blank" title="' . gettext("View more information") . '" href="' . htmlspecialchars($pkg['www']) . '" class="fa fa-info"></a>');
+ print( '<a target="_blank" title="' . gettext("View more information") . '" href="' . htmlspecialchars($pkg['www']) . '"><i class="fa fa-info"></i></a>'."\n");
}
print( "</td>\n");
@@ -196,7 +196,7 @@ if (empty($installed_packages)): ?>
// Deal with the results of the above ajax call
ajaxRequest.done(function (response, textStatus, jqXHR) {
$('#pkgtbl').html(response);
- stripe_table();
+
// and do it again
setTimeout(get_gw_stats, 5000);
});
OpenPOWER on IntegriCloud