diff options
-rw-r--r-- | include/widgets.php | 1 | ||||
-rwxr-xr-x | mod/events.php | 3 | ||||
-rwxr-xr-x | view/tpl/events-js.tpl | 1 | ||||
-rwxr-xr-x | view/tpl/events_side.tpl | 1 |
4 files changed, 3 insertions, 3 deletions
diff --git a/include/widgets.php b/include/widgets.php index f979ef2c4..a3f7444ec 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -671,7 +671,6 @@ function widget_eventsmenu($arr) { '$day' => t('Day View'), '$week' => t('Week View'), '$month' => t('Month View'), - '$today' => t('Today'), '$export' => t('Export'), '$upload' => t('Import'), '$submit' => t('Submit') diff --git a/mod/events.php b/mod/events.php index 230e386ce..53284e7a9 100755 --- a/mod/events.php +++ b/mod/events.php @@ -530,7 +530,8 @@ function events_content(&$a) { '$upload' => t('Import'), '$submit' => t('Submit'), '$prev' => t('Previous'), - '$next' => t('Next'), + '$next' => t('Next'), + '$today' => t('Today') )); if (x($_GET,'id')){ echo $o; killme(); } diff --git a/view/tpl/events-js.tpl b/view/tpl/events-js.tpl index 03c6a5fb6..d481af2e9 100755 --- a/view/tpl/events-js.tpl +++ b/view/tpl/events-js.tpl @@ -6,6 +6,7 @@ <div class="btn-group"> <button class="btn btn-default btn-xs" onclick="changeView('prev', false);" title="{{$prev}}"><i class="icon-backward"></i></button> + <button class="btn btn-default btn-xs" onclick="changeView('today', false);" title="{{$today}}"><i class="icon-bullseye"></i></button> <button class="btn btn-default btn-xs" onclick="changeView('next', false);" title="{{$next}}"><i class="icon-forward"></i></button> </div> </div> diff --git a/view/tpl/events_side.tpl b/view/tpl/events_side.tpl index 4659063c3..b9a9062b1 100755 --- a/view/tpl/events_side.tpl +++ b/view/tpl/events_side.tpl @@ -4,6 +4,5 @@ <li><a href="#" onclick="changeView('changeView', 'month'); return false;">{{$month}}</a></li> <li><a href="#" onclick="changeView('changeView', 'agendaWeek'); return false;">{{$week}}</a></li> <li><a href="#" onclick="changeView('changeView', 'agendaDay'); return false;">{{$day}}</a></li> - <li><a href="#" onclick="changeView('today', false); return false;">{{$today}}</a></li> </ul> </div> |