From a2e796d4502f96c1ec0e85dd22c7eccf7d1d9ac3 Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Fri, 19 Apr 2013 04:27:29 -0400 Subject: [PATCH] Typo. Incorrect bitshift caused $PARCEL_SINGLE to be ignored. To fix in the database, run update Contact set parcel=parcel|1 where parcel>0 and not (parcel & 7); update FoodOrder set parcel=parcel|1 where parcel>0 and not (parcel & 7); --- lib/contact.php | 4 ++-- lib/order.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/contact.php b/lib/contact.php index 8ba1fcd..4e3b456 100644 --- a/lib/contact.php +++ b/lib/contact.php @@ -266,9 +266,9 @@ echo "\n"; echo " Family unit\n"; echo " \n"; echo "\n"; diff --git a/lib/order.php b/lib/order.php index 928ca67..f1911c5 100644 --- a/lib/order.php +++ b/lib/order.php @@ -303,9 +303,9 @@ echo "\n"; echo " Parcel size\n"; echo " \n"; echo "\n"; -- 2.7.4