diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-05-21 00:23:06 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-05-21 00:23:06 -0400 |
commit | c099a98759a659267bf0729246a254d778d54a31 (patch) | |
tree | 81e85ddeba6b58f5b888bf95dceed7dfd9723d96 | |
parent | d7f742c26558b1ff08a0d6f28f24a6b5acf537e8 (diff) | |
download | pfsense-c099a98759a659267bf0729246a254d778d54a31.zip pfsense-c099a98759a659267bf0729246a254d778d54a31.tar.gz |
Add space between the and forum
-rwxr-xr-x | usr/local/www/pkg_mgr.php | 2 | ||||
-rwxr-xr-x | usr/local/www/pkg_mgr_installed.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/pkg_mgr.php b/usr/local/www/pkg_mgr.php index 1445dcf..e82bba0 100755 --- a/usr/local/www/pkg_mgr.php +++ b/usr/local/www/pkg_mgr.php @@ -195,7 +195,7 @@ include("head.inc"); $pkginfolink = $index['pkginfolink']; echo "<a target='_new' href='$pkginfolink'>Package Info</a>"; } else { - echo gettext("No info, check the") . "<a href='http://forum.pfsense.org/index.php/board,15.0.html'>" . gettext("forum") . "</a>"; + echo gettext("No info, check the") . " <a href='http://forum.pfsense.org/index.php/board,15.0.html'>" . gettext("forum") . "</a>"; } ?> </td> diff --git a/usr/local/www/pkg_mgr_installed.php b/usr/local/www/pkg_mgr_installed.php index 5db007f..2708c78 100755 --- a/usr/local/www/pkg_mgr_installed.php +++ b/usr/local/www/pkg_mgr_installed.php @@ -134,7 +134,7 @@ include("head.inc"); $pkginfolink = $currentvers[$pkg['name']]['pkginfolink']; echo "<a target='_new' href='$pkginfolink'>" . gettext("Package Info") . "</a>"; } else { - echo gettext("No info, check the") . "<a href='http://forum.pfsense.org/index.php/board,15.0.html'>" . gettext("forum") . "</a>"; + echo gettext("No info, check the") . " <a href='http://forum.pfsense.org/index.php/board,15.0.html'>" . gettext("forum") . "</a>"; } ?> </td> |