diff options
author | Arun Persaud <arun@nubati.net> | 2009-01-15 21:52:17 -0800 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2009-01-15 21:52:17 -0800 |
commit | de0515836f4d26a2fae1ca04b5a4a7a399801e4a (patch) | |
tree | 592ecd39163c1659b81243ff4620e59726e2b649 /include/preferences.php | |
parent | dd22bb40f82d96ee744ee723c78852228d88df32 (diff) | |
download | e-DoKo-de0515836f4d26a2fae1ca04b5a4a7a399801e4a.tar.gz e-DoKo-de0515836f4d26a2fae1ca04b5a4a7a399801e4a.tar.bz2 e-DoKo-de0515836f4d26a2fae1ca04b5a4a7a399801e4a.zip |
BUGFIX: forgot to initialize two variables in preferences.php
Diffstat (limited to 'include/preferences.php')
-rw-r--r-- | include/preferences.php | 12 |
1 files changed, 7 insertions, 5 deletions
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); |