From 0781acf17e256ac393f3d4cc08f0e99ae2c2d223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=B3na=20Lore?= Date: Sat, 12 Dec 2015 14:49:13 +0100 Subject: [PATCH] Replaced hardcoded "ago" string with constant. --- e107_handlers/date_handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/date_handler.php b/e107_handlers/date_handler.php index c4d554242..6a15564f5 100644 --- a/e107_handlers/date_handler.php +++ b/e107_handlers/date_handler.php @@ -620,7 +620,7 @@ class convert } if($format == 'short' && count($outputArray) == 1) { break; } } - return ($mode ? $outputArray : implode(", ", $outputArray) . " ago"); //XXX LAN + return ($mode ? $outputArray : implode(", ", $outputArray) . " " . LANDT_AGO); }