From 411501a6e0b7ba0f0e7430b0d3dbdd00d10d87fd 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 %]