From 17505f3d789605f942138e1f19494f4cafb77ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=B3na=20Lore?= Date: Sat, 12 Dec 2015 15:31:53 +0100 Subject: [PATCH] Fixed: "ago" string is displayed twice. --- e107_core/shortcodes/batch/user_shortcodes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_core/shortcodes/batch/user_shortcodes.php b/e107_core/shortcodes/batch/user_shortcodes.php index d94a68dfd..6a47c87a2 100644 --- a/e107_core/shortcodes/batch/user_shortcodes.php +++ b/e107_core/shortcodes/batch/user_shortcodes.php @@ -211,7 +211,7 @@ class user_shortcodes extends e_shortcode function sc_user_daysregged($parm) { - return e107::getDate()->computeLapse($this->var['user_join'])." ".LAN_USER_34; + return e107::getDate()->computeLapse($this->var['user_join']); }