From 83704cb1fab33feb0262fdab99bccf0052243d14 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 8 Jun 2017 16:01:32 +0000 Subject: [PATCH] Bug 15644 - City dropdown default selection when modifying a patron matches only on city This patch modifies the include files which contain the form fields for city, state, zipcode, etc. shown on the patron entry screen. The files are modified so that the city/state/zip [% FOREACH c IN cities %] - [% IF c.city_name == city %] + [% IF c.city_name == city && c.city_state == state && c.city_zipcode == zipcode %] [% FOREACH c IN cities %] - [% IF c.city_name == city %] + [% IF c.city_name == city && c.city_state == state && c.city_zipcode == zipcode %]