From 8cd8df19480a3765e54c3dcfb4948b097e7ea5ad 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 %]