diff options
author | Colin Smith <colin@pfsense.org> | 2005-03-20 05:35:55 +0000 |
---|---|---|
committer | Colin Smith <colin@pfsense.org> | 2005-03-20 05:35:55 +0000 |
commit | 17ddd8ce0980e59f6976cc7ffaab712861cde718 (patch) | |
tree | 14ecc7b436dab20f1777ac4deea3f4a4bce5abd5 /usr | |
parent | 782c32a76bbbea0acecb774d9c740ee7ba48f4a0 (diff) | |
download | pfsense-17ddd8ce0980e59f6976cc7ffaab712861cde718.zip pfsense-17ddd8ce0980e59f6976cc7ffaab712861cde718.tar.gz |
Fix typos and trim output.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/pkg_mgr_installed.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/pkg_mgr_installed.php b/usr/local/www/pkg_mgr_installed.php index 64b8278..016d69a 100755 --- a/usr/local/www/pkg_mgr_installed.php +++ b/usr/local/www/pkg_mgr_installed.php @@ -80,7 +80,7 @@ include("fbegin.inc"); $latest_version = get_latest_package_version($pkg['name']); if($latest_version == false) { // We can't determine this package's version status. - echo "Current version unkown.<br>Installed: " . $pkg['version']; + echo "Upgrade: Unknown.<br>Installed: " . $pkg['version']; } elseif($pkg['version'] <> $latest_version) { /* a new version of the package is available */ $id = get_pkg_id($pkg['name']); |