Index: event.php =================================================================== RCS file: /calendar/event.php,v retrieving revision 1.63.2.4 diff -u -r1.63.2.4 event.php --- event.php 28 Jun 2007 03:58:39 -0000 1.63.2.4 +++ event.php 19 Dec 2007 11:36:33 -0000 @@ -188,7 +188,9 @@ case 'new': $title = get_string('newevent', 'calendar'); $form = data_submitted(); - if(!empty($form) && !empty($form->name)) { + // Steve Bond 19 Dec 07: removed '&& !empty($form->name)' from this condition as it + // prevents name field warning being shown + if(!empty($form)) { $form->name = clean_text(strip_tags($form->name, ''));