diff options
author | Chris Buechler <cmb@pfsense.org> | 2011-01-25 05:32:14 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2011-01-25 05:32:14 -0500 |
commit | f0e69fca016e176e6480fb9d33b558fb09491c0a (patch) | |
tree | 778754dd5dacd76326986a4e4e77fa55f65b82db | |
parent | d11e01f4ee0a6ed21d72d6f4f68ed9e7fe032f71 (diff) | |
download | pfsense-f0e69fca016e176e6480fb9d33b558fb09491c0a.zip pfsense-f0e69fca016e176e6480fb9d33b558fb09491c0a.tar.gz |
don't show version on this page either, to match the other pages
-rwxr-xr-x | usr/local/www/pkg_mgr_install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/pkg_mgr_install.php b/usr/local/www/pkg_mgr_install.php index 1abcae6..8659b8e 100755 --- a/usr/local/www/pkg_mgr_install.php +++ b/usr/local/www/pkg_mgr_install.php @@ -67,9 +67,9 @@ include("head.inc"); <tr> <td> <?php - $version = file_get_contents("/etc/version"); +// $version = file_get_contents("/etc/version"); $tab_array = array(); - $tab_array[] = array("{$version} " . gettext("packages"), false, "pkg_mgr.php"); + $tab_array[] = array(gettext("Available packages"), false, "pkg_mgr.php"); // $tab_array[] = array("Packages for any platform", false, "pkg_mgr.php?ver=none"); // $tab_array[] = array("Packages for a different platform", $requested_version == "other" ? true : false, "pkg_mgr.php?ver=other"); $tab_array[] = array(gettext("Installed packages"), false, "pkg_mgr_installed.php"); |