summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 3d0a8b3..5996fca 100644
--- a/index.php
+++ b/index.php
@@ -7,7 +7,7 @@ if (empty($page)) {
} else if (!empty($page) && $page[0] >= '0' && $page[0] <= '9' && is_readable("./posts/$page.php")) {
$script = file_get_contents("./posts/$page.php");
$re = '/<code>([^\(<>\)]*)\(([0-9])\)<\/code>/m';
- $subst = '<a target="_blank" href="https://www.freebsd.org/cgi/man.cgi?query=$1&sektion=$2&format=ascii">$1($2)</a>';
+ $subst = '<a href="https://www.freebsd.org/cgi/man.cgi?query=$1&sektion=$2&format=ascii">$1($2)</a>';
$script = preg_replace($re, $subst, $script);
eval("?>$script<?php");
} else if (!empty($page) && is_readable("./pages/$page.php")) {