diff options
author | Alex Brelsfoard <alex@freeside.biz> | 2015-02-10 00:10:00 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-07-02 23:42:53 -0500 |
commit | fa8a42b29c19f9cb692f409e6ac3d081010ec3f8 (patch) | |
tree | ebb4e1499c618362f92f69d4f9a7ed6e3addda65 /httemplate/elements | |
parent | ca8b9c43d93fce9dc821e03f9126ad47f4c1b016 (diff) |
RT #29285 adding new config to disable city requirement
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/location.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/httemplate/elements/location.html b/httemplate/elements/location.html index 214a7d5f2..357a91db7 100644 --- a/httemplate/elements/location.html +++ b/httemplate/elements/location.html @@ -169,10 +169,15 @@ Example: <TR> +% if ($conf->exists('city_not_required')) { +<input type="hidden" name="<% ($select_hash{'prefix'}) ? $select_hash{'prefix'} : '' %>city" value=" "/> +%} else { <<%$th%> ALIGN="right"><%$r%><% mt('City') |h %></<%$th%>> <TD WIDTH="1"><% include('/elements/city.html', %select_hash, 'text_style' => \@style ) %></TD> + <<%$th%> ALIGN="right" WIDTH="1" ID="<%$pre%>countylabel" <%$county_style%>><%$r%>County</<%$th%>> <TD WIDTH="1"><% include('/elements/select-county.html', %select_hash ) %></TD> +% } <<%$th%> ALIGN="right" WIDTH="1"><%$r%><% mt('State') |h %></<%$th%>> <TD WIDTH="1"> <% include('/elements/select-state.html', %select_hash ) %> |