From 91d8579f651e3c16ec01c6f60455f8f0872b2325 Mon Sep 17 00:00:00 2001 From: ywarnier Date: Wed, 9 Feb 2011 08:34:27 -0500 Subject: [PATCH] Removed useless backticks --- main/calendar/agenda.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/calendar/agenda.inc.php b/main/calendar/agenda.inc.php index 8a0fa73f9f..df1e15c827 100755 --- a/main/calendar/agenda.inc.php +++ b/main/calendar/agenda.inc.php @@ -3413,7 +3413,7 @@ function get_day_agendaitems($courses_dbs, $month, $year, $day) { WHERE agenda.id = item_property.ref AND DAYOFMONTH(start_date)='".$day."' AND MONTH(start_date)='".$month."' AND YEAR(start_date)='".$year."' AND item_property.tool='".TOOL_CALENDAR_EVENT."' - AND ( item_property.to_user_id='".$_user['user_id']."' OR `item_property`.`to_group_id` IN (0, ".implode(", ", $group_memberships).") ) + AND ( item_property.to_user_id='".$_user['user_id']."' OR item_property.to_group_id IN (0, ".implode(", ", $group_memberships).") ) AND item_property.visibility='1' ORDER BY start_date "; } else {