diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-05-13 12:25:26 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-05-13 12:25:26 +0200 |
commit | f45411f79d5795d833653554330d3eb38634c8a0 (patch) | |
tree | 04c66b848282facbfc070f7fc3347e7b4b626edc /apps | |
parent | 85cc34fd05ec73714b73cc3553f04e4960ccb42b (diff) | |
download | nextcloud-server-f45411f79d5795d833653554330d3eb38634c8a0.tar.gz nextcloud-server-f45411f79d5795d833653554330d3eb38634c8a0.zip |
fix another php notice
Diffstat (limited to 'apps')
-rwxr-xr-x | apps/calendar/ajax/event/new.form.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/calendar/ajax/event/new.form.php b/apps/calendar/ajax/event/new.form.php index f47cb6c3e2a..91b85fff07f 100755 --- a/apps/calendar/ajax/event/new.form.php +++ b/apps/calendar/ajax/event/new.form.php @@ -57,6 +57,7 @@ $tmpl->assign('repeat_byweekno_options', $repeat_byweekno_options); $tmpl->assign('repeat_bymonthday_options', $repeat_bymonthday_options); $tmpl->assign('repeat_weekofmonth_options', $repeat_weekofmonth_options); +$tmpl->assign('eventid', 'new'); $tmpl->assign('startdate', $start->format('d-m-Y')); $tmpl->assign('starttime', $start->format('H:i')); $tmpl->assign('enddate', $end->format('d-m-Y')); |