diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-02-10 18:05:23 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-02-10 18:05:23 -0500 |
commit | ff4487c7364bd5457541efe03b05c2c06b19d55e (patch) | |
tree | 5961f6a14f582ffb895f5632ed612e5c334d3f1d | |
parent | 44df08c27b442a9069b90aa49271725e4303ea6f (diff) | |
download | pfsense-ff4487c7364bd5457541efe03b05c2c06b19d55e.zip pfsense-ff4487c7364bd5457541efe03b05c2c06b19d55e.tar.gz |
Open package info link in new tab / window
-rwxr-xr-x | usr/local/www/pkg_mgr.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/pkg_mgr.php b/usr/local/www/pkg_mgr.php index d27d1cd..89a3634 100755 --- a/usr/local/www/pkg_mgr.php +++ b/usr/local/www/pkg_mgr.php @@ -182,7 +182,7 @@ include("head.inc"); <?php if($index['pkginfolink']) { $pkginfolink = $index['pkginfolink']; - echo "<a href='$pkginfolink'>Package Info</a>"; + echo "<a target='_new' href='$pkginfolink'>Package Info</a>"; } else { echo "No info, check the <a href='http://forum.pfsense.org/index.php/board,15.0.html'>forum</a>"; } |