diff --git a/themes/commons_roots/views-view-field--field-date-value.tpl.php b/themes/commons_roots/views-view-field--field-date-value.tpl.php
index 0c3fc89..cc6200b 100644
--- a/themes/commons_roots/views-view-field--field-date-value.tpl.php
+++ b/themes/commons_roots/views-view-field--field-date-value.tpl.php
@@ -20,13 +20,13 @@
   * the view is modified.
   */
   
-$time = strtotime($row->{$field->field_alias});
+$time = format_date(strtotime($row->{$field->field_alias}), 'custom', 'U');
 ?>
 <?php if ($variables['view']->plugin_name != 'calendar_style'): ?>
   <div class="dateblock">
-    <span class="month"><?php echo date('M', $time); ?></span>
-    <span class="day"><?php echo date('j', $time) ?></span>
-    <span class="year"><?php echo date('Y', $time) ?></span>
+    <span class="month"><?php echo format_date($time, 'custom', 'M'); ?></span>
+    <span class="day"><?php echo format_date($time, 'custom', 'j') ?></span>
+    <span class="year"><?php echo format_date($time, 'custom', 'Y') ?></span>
   </div>
 <?php else: ?>
   <?php print $output; ?>
