From 7f49b31963489ba5cec1cf102795fd9ad15cdc4c Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Wed, 25 Feb 2009 12:25:10 +0000 Subject: [PATCH] fixing a misplaced . that prevented the creating of new events --- calendar/inc/class.calendar_uiforms.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/inc/class.calendar_uiforms.inc.php b/calendar/inc/class.calendar_uiforms.inc.php index 914f4d6019..e347f747fc 100644 --- a/calendar/inc/class.calendar_uiforms.inc.php +++ b/calendar/inc/class.calendar_uiforms.inc.php @@ -301,7 +301,7 @@ class calendar_uiforms extends calendar_ui #$msg = lang('The resource you selected is already overbooked:').$selectedres['name']; } else { // 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; } }