summaryrefslogtreecommitdiffstats
path: root/usr/local/www/pkg_mgr.php
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2015-05-07 15:16:14 -0300
committerRenato Botelho <garga@FreeBSD.org>2015-05-07 15:16:14 -0300
commit84d0ea1c011916dcd42bac362eccc3181e6835d8 (patch)
tree43396eb0fb39ea28b6cc17a9e9df656f669efe4b /usr/local/www/pkg_mgr.php
parent3c4392eef7146934f23a638ef46775495e431feb (diff)
downloadpfsense-84d0ea1c011916dcd42bac362eccc3181e6835d8.zip
pfsense-84d0ea1c011916dcd42bac362eccc3181e6835d8.tar.gz
Remove package_skip_tests(), it won't be necessary anymore with pkg
Diffstat (limited to 'usr/local/www/pkg_mgr.php')
-rw-r--r--usr/local/www/pkg_mgr.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/usr/local/www/pkg_mgr.php b/usr/local/www/pkg_mgr.php
index ea8fbf0..e271bba 100644
--- a/usr/local/www/pkg_mgr.php
+++ b/usr/local/www/pkg_mgr.php
@@ -149,9 +149,7 @@ include("head.inc");
$categories=array();
if(is_array($pkg_keys)) {
foreach($pkg_keys as $key) {
- if (!package_skip_tests($pkg_info[$key],$requested_version))
- $categories[$pkg_info[$key]['category']]++;
- }
+ $categories[$pkg_info[$key]['category']]++;
}
ksort($categories);
$cm_count=0;
@@ -206,9 +204,6 @@ include("head.inc");
if(get_package_id($index['name']) >= 0 )
continue;
- if (package_skip_tests($index,$requested_version))
- continue;
-
/* get history/changelog git dir */
$commit_dir=explode("/",$index['config_file']);
$changeloglink = "https://github.com/pfsense/pfsense-packages/commits/master/config/";
OpenPOWER on IntegriCloud