From 750bd3bb9b69893bdda2a0c5225c327bea0e41b7 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 29 Mar 2005 10:16:35 +0000 Subject: [PATCH] fixed bug: private filter not working as suggested by Bertrand Croq on the developer list --- calendar/inc/class.bocalendar.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/inc/class.bocalendar.inc.php b/calendar/inc/class.bocalendar.inc.php index b4b892ddb9..053671ac0d 100755 --- a/calendar/inc/class.bocalendar.inc.php +++ b/calendar/inc/class.bocalendar.inc.php @@ -233,7 +233,7 @@ $this->printer_friendly = ((int)$friendly == 1?True:False); - if(isset($_POST['filter']) && ($_POST['filter'] == ' all ' || $_POST['filter'] == ' privat ')) + if(isset($_POST['filter']) && ($_POST['filter'] == ' all ' || $_POST['filter'] == ' private ')) { $this->filter = $_POST['filter']; }