mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 23:29:31 +01:00
Fix broken link from year view to month view. Fixes Bug #3109 - Year view problem reported and investigated by -ws Skygge-, (backport from hjtappe)
This commit is contained in:
parent
993f07a69f
commit
4a6b3ad523
@ -448,7 +448,7 @@ class calendar_uiviews extends calendar_ui
|
||||
}
|
||||
$content .= "\t\t\t\t".'<a href="'.$GLOBALS['egw']->link('/index.php',
|
||||
array('menuaction'=>'calendar.calendar_uiviews.month',
|
||||
'date'=>$this->year.$month.'01')).
|
||||
'date'=>$this->year.($month < 10 ? '0' : '').$month.'01')).
|
||||
'" title="'.lang('Monthview').'">'.lang(adodb_date('F',strtotime("+1 week",$month_start))).'</a>'."\n";
|
||||
if ($month == self::YEARVIEW_COLS)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user