fixing a misplaced . that prevented the creating of new events

This commit is contained in:
Klaus Leithoff 2009-02-25 12:25:10 +00:00
parent 8b4932dd11
commit 7f49b31963

View File

@ -301,7 +301,7 @@ class calendar_uiforms extends calendar_ui
#$msg = lang('The resource you selected is already overbooked:').$selectedres['name']; #$msg = lang('The resource you selected is already overbooked:').$selectedres['name'];
} else { } else {
// you are not allowed to book, or the resource is overbooked already // you are not allowed to book, or the resource is overbooked already
$msg = .lang('You are not allowed to book the resource selected:').$selectedres['name']; $msg .= lang('You are not allowed to book the resource selected:').$selectedres['name'];
break; break;
} }
} }