From 8915114b429460123ca94d8166f07071f32f33e6 Mon Sep 17 00:00:00 2001 From: Mike Koch Date: Sun, 23 Nov 2014 15:31:38 -0500 Subject: [PATCH] Closes #63 open links in tickets in new tab / window Typically, users should be given the ability to open links in the same window. However, according to HTML5 specifications, the _blank target attribute is now permitted for specific use cases. Opening external links, in my opinion, is a valid use case. --- inc/common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/common.inc.php b/inc/common.inc.php index e971fab5..1ba32f78 100644 --- a/inc/common.inc.php +++ b/inc/common.inc.php @@ -1310,7 +1310,7 @@ function make_clickable_callback($type, $whitespace, $url, $relative_url, $class $text = htmlspecialchars($text); $append = htmlspecialchars($append); - $html = "$whitespace$text$append"; + $html = "$whitespace$text$append"; return $html; } // END make_clickable_callback()