$r = CubeIT_Util_Cms::unserialize($r);
$res .= '<article class="actu">';
- $c = $this->view->dateTime($r->date, "dd-MM-y", array('class' => 'date'),'en-US');
+ $c = $this->view->dateTime($r->date, "MM/dd/Y", array('class' => 'date'),'en-US');
$c .= $this->view->markupDotclear($r->content);
$r->link->label = $c; // Set content as label so it can be used with linkCMS()
$res .= $this->linkCMS($r->link);
$r = CubeIT_Util_Cms::unserialize($r);
$y = date('Y', strtotime($r->date));
- $date = date('d-m-Y', strtotime($r->date));
+ $date = date('m/d/Y', strtotime($r->date));
$news[$y][] = array(
'date' => '<time class="date" datetime="'. $date .'">'. $date .'</time>',