Skip to content
Snippets Groups Projects

Hotline/16951 agenda month and arrow disappear

Merged Ghost User requested to merge hotline/16951-agenda-month-and-arrow-disappear into hotline_6.54
Compare and
+ 45
4
Preferences
Compare changes
Files
@@ -206,9 +206,9 @@ class ZendAfi_View_Helper_Calendar_Table extends Zend_View_Helper_HtmlElement {
' »',
$anchor_class);
$tds_content = $this->view->tag('td', $previews_month, ['class' => 'calendar_title_left_arrow']);
$tds_content.= $this->view->tag('td', $current_month, ['class' => 'calendar_title_month']);
$tds_content.= $this->view->tag('td', $next_month, ['class' => 'calendar_title_right_arrow']);
$tds_content = $this->view->tag('td', '', ['class' => 'calendar_title_left_arrow']);
$tds_content .= $this->view->tag('td', $previews_month . $current_month . $next_month, ['class' => 'calendar_title_month']);
$tds_content .= $this->view->tag('td', '', ['class' => 'calendar_title_right_arrow']);
return $this->view->tag('tr', $tds_content, ['class' => 'calendar_title']);
}