Installed package widgets not showing updates
-
installed package widgets not showing updates works under packages though
-
+1 Seeing this as well.
-
The widget is intended to show available updates when the dashboard page is first loaded. Please refresh the page to see if updates displayed on the package manager page now appear on the dashboard.
-
NO NO tried a shift reload and still not on dash board but if i go to packages it shows snort and pfblocker need updates
-
this is on 2.4.2.a.20171030.0525
been afraid to update since have 2 pppoe connections and wife works from home -
It was a 'optimization' it seems, but maybe needs a different approach?: https://github.com/pfsense/pfsense/commit/cc28e9b1d39eaf64e28702b963dde7a6132a4691
If changing the code below then it shows updates, otherwise it doesn't..:
src/usr/local/www/widgets/widgets/installed_packages.widget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 692d3d4..2cab220 100644 --- a/src/usr/local/www/widgets/widgets/installed_packages.widget.php +++ b/src/usr/local/www/widgets/widgets/installed_packages.widget.php @@ -35,7 +35,7 @@ require_once("/usr/local/www/widgets/include/installed_packages.inc"); require_once("pkg-utils.inc"); function get_pkg_stats() { - $package_list = get_pkg_info('all', true, true); + $package_list = get_pkg_info('all', false, true); $installed_packages = array_filter($package_list, function($v) { return (isset($v['installed']) || isset($v['broken'])); });
-
Thanks PiBa. I'l investigate and fix ASAP.
https://redmine.pfsense.org/issues/8035
-
Fixed in the next snapshot.