]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - lib/functions.php
fix:remove deprecated strftime
[jirafeau_mojo42.git] / lib / functions.php
index cf895932caef331bb081975cf4872804612945f1..d6f7cb03cf19c0056100d163a101a2d323bc5392 100644 (file)
@@ -143,8 +143,11 @@ function jirafeau_human_size($octets)
 // Convert UTC timestamp to a datetime field
 function jirafeau_get_datetimefield($timestamp)
 {
 // Convert UTC timestamp to a datetime field
 function jirafeau_get_datetimefield($timestamp)
 {
-    $content = '<span class="datetime" data-datetime="' . strftime('%Y-%m-%d %H:%M', $timestamp) . '">'
-        . strftime('%Y-%m-%d %H:%M', $timestamp) . ' (GMT)</span>';
+
+    $ts = date_create("@" . $timestamp);
+    $content = '<span class="datetime" data-datetime="' . date_format($ts, 'Y-m-d H:i') . '">'
+        . date_format($ts, 'Y-m-d H:i') . ' (GMT)</span>';
+    
     return $content;
 }
 
     return $content;
 }
 

patrick-canterino.de