From: Anthony Talarico Date: Wed, 12 Apr 2017 12:56:52 +0000 (-0400) Subject: adding target blank to the files href on detail page X-Git-Tag: v1.0.0^2~30 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=f909806aa034a8972f97613c496ca4007e39e0a2;p=WP-Plugins%2Fglm-member-db-fields.git adding target blank to the files href on detail page --- 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; }