1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Fixed: "ago" string is displayed twice.

This commit is contained in:
Lóna Lore
2015-12-12 15:31:53 +01:00
parent 0781acf17e
commit 17505f3d78

View File

@@ -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']);
}