From d919c49b2f8681d5a23dfd7880fe18fa71f61705 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Mon, 28 Mar 2011 02:20:03 +1100 Subject: [PATCH] Open external links in a new tab/page --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index c8877b59..a00d62d7 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -905,7 +905,7 @@ } if($config['markup_urls']) { - $body = preg_replace($config['url_regex'], "$0", $body, -1, $num_links); + $body = preg_replace($config['url_regex'], "$0", $body, -1, $num_links); if($num_links > $config['max_links']) error($config['error']['toomanylinks']); }