From f909806aa034a8972f97613c496ca4007e39e0a2 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 12 Apr 2017 08:56:52 -0400 Subject: [PATCH] adding target blank to the files href on detail page --- setup/frontHooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/frontHooks.php b/setup/frontHooks.php index 0152ac4..7621148 100644 --- a/setup/frontHooks.php +++ b/setup/frontHooks.php @@ -49,7 +49,7 @@ add_filter('glm-member-db-front-members-detail-files', function( $content, $id) foreach($results as $result){ $caption = ($result->caption !== '' ? $result->caption : $result->name); - $file = "" .$caption .''; + $file = "" .$caption .''; $content .= $file; } -- 2.17.1