fixes warnings in the httpd server error logs

This commit is contained in:
Ryan Walberg 2013-11-06 04:01:50 +00:00
parent d9cb5686ef
commit b8fea7d93c
7 changed files with 19 additions and 19 deletions

View file

@ -197,7 +197,7 @@ try {
$smarty->assign('message', $message);
}
$smarty->assign('action', $action);
$smarty->assign('haserror', $haserror);
$smarty->assign('haserror', isset($haserror) ? $haserror : false);
$smarty->assign('events', $events);
$smarty->assign('eventdate', $eventdate->format($opt["date_format"]));
if (isset($eventdate_error)) {