diff options
author | Renato Botelho <renato@netgate.com> | 2017-08-11 11:38:13 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2017-08-11 11:38:13 -0300 |
commit | b57a87b3fa10e6a17acc1c40e5f6ea1a9b40e44b (patch) | |
tree | b5eea4423b4da774906ef68088186081a29b64c4 | |
parent | 9d14b22c395f6eb11199261caab9e0f7cec3e395 (diff) | |
download | pfsense-b57a87b3fa10e6a17acc1c40e5f6ea1a9b40e44b.zip pfsense-b57a87b3fa10e6a17acc1c40e5f6ea1a9b40e44b.tar.gz |
Refresh metadata before an upgrade
-rw-r--r-- | src/usr/local/www/pkg_mgr_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/pkg_mgr_install.php b/src/usr/local/www/pkg_mgr_install.php index b36c0a6..4a35b10 100644 --- a/src/usr/local/www/pkg_mgr_install.php +++ b/src/usr/local/www/pkg_mgr_install.php @@ -67,7 +67,7 @@ if ($_REQUEST['ajax']) { // If this is an ajax call to get the installed and newest versions, call that function, // JSON encode the result, print it and exit if ($_REQUEST['getversion']) { - $firmwareversions = get_system_pkg_version(true); + $firmwareversions = get_system_pkg_version(true, false); print(json_encode($firmwareversions)); exit; } |