From: Iain Patterson Date: Fri, 19 Apr 2013 08:27:29 +0000 (-0400) Subject: Typo. X-Git-Tag: 2013-04-19^0 X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;h=a2e796d4502f96c1ec0e85dd22c7eccf7d1d9ac3;hp=a2e796d4502f96c1ec0e85dd22c7eccf7d1d9ac3;p=readifood.git 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); ---