From: Arun Persaud Date: Fri, 16 Jan 2009 05:52:17 +0000 (-0800) Subject: BUGFIX: forgot to initialize two variables in preferences.php X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=commitdiff_plain;h=de0515836f4d26a2fae1ca04b5a4a7a399801e4a BUGFIX: forgot to initialize two variables in preferences.php --- diff --git a/include/preferences.php b/include/preferences.php index 616c5e2..382b165 100644 --- a/include/preferences.php +++ b/include/preferences.php @@ -12,11 +12,13 @@ if(!$myid) return; /* track what got changed */ -$changed_notify = 0; -$changed_password = 0; -$changed_cards = 0; -$changed_timezone = 0; -$changed_autosetup = 0; +$changed_notify = 0; +$changed_password = 0; +$changed_cards = 0; +$changed_timezone = 0; +$changed_autosetup = 0; +$changed_sorting = 0; +$changed_openforgames = 0; display_user_menu($myid);