From 2a41c37feef23d9027c9852b2646dba6d03291b1 Mon Sep 17 00:00:00 2001 From: czaks Date: Thu, 13 Mar 2014 22:39:32 +0100 Subject: [PATCH] fix link_prefix. thanks to anon on http://tinyboard.org/demo/mod.php?/sup/res/1210.html --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index a65bf720..488a4117 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -1590,7 +1590,7 @@ function markup_url($matches) { $markup_urls[] = $url; $link = (object) array( - 'href' => $url, + 'href' => $config['link_prefix'] . $url, 'text' => $url, 'rel' => 'nofollow', 'target' => '_blank',