From 7b4bde3f565265cfe95f8a4ce1f9fec4f028e3fd Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Sun, 3 Nov 2013 18:45:51 +0100 Subject: [PATCH] Fix Javascript ReferenceError by using target=_blank instead of popup() in a link Fix following reported Javascript error when clicking on the education link present in search results: "Uncaught ReferenceError: popup is not defined" Signed-off-by: Nicolas Iooss --- plugins/function.display_education.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/function.display_education.php b/plugins/function.display_education.php index 4690f74..143c474 100644 --- a/plugins/function.display_education.php +++ b/plugins/function.display_education.php @@ -32,7 +32,7 @@ function display_education($name, $url, $degree, $gradYear, $field, $program, $f } } if ($url != '') { - $txt .= '' . $name . ''; + $txt .= '' . $name . ''; } else { $txt .= $name; } -- 2.1.4