From 461aa1b91398cf027dcab7d9db3347bc7def9cd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=B3na=20Lore?= Date: Fri, 1 Jan 2016 14:18:01 +0100 Subject: [PATCH] Fixed: path to image, and replaced hardcoded string with constant. --- e107_core/shortcodes/batch/comment_shortcodes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_core/shortcodes/batch/comment_shortcodes.php b/e107_core/shortcodes/batch/comment_shortcodes.php index a97f897c4..50206f4a9 100644 --- a/e107_core/shortcodes/batch/comment_shortcodes.php +++ b/e107_core/shortcodes/batch/comment_shortcodes.php @@ -434,10 +434,10 @@ class comment_shortcodes extends e_shortcode if($prov == 'facebook' || $prov == 'twitter') { //TODO Move styling to e107.css - $text = "Share"; + $text = "Share"; $text .= e107::getForm()->checkbox('comment_share',$prov,true); - $text .= "Share"; + $text .= LAN_SHARE; return $text; } }