Forráskód Böngészése

Merge branch 'dev' into dev-vj

Vijayakrishnan Krishnan 4 éve
szülő
commit
46e3937260
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      app/Helpers/helpers.php

+ 1 - 1
app/Helpers/helpers.php

@@ -19,7 +19,7 @@ if(!function_exists('friendly_date_time')) {
         if(!$value || empty($value)) return $default;
         try {
             $result = strtotime($value);
-            $result = date("jS M o" . ($includeTime ? ", h:ia" : ""), $result);
+            $result = date("jS M Y" . ($includeTime ? ", h:ia" : ""), $result);
             return $result;
         }
         catch (Exception $e) {