Modify ↓
Opened 12 years ago
Closed 12 years ago
#213 closed Bug/Fehler (fixed)
Bundeslandauswahl "Sachsen" nicht möglich
| Reported by: | Owned by: | Ronald Parcinski | |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.0.0 |
| Component: | Shop | Version: | 1.06 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
Datei: address_book_process.php
Wenn man als Bundesland "Sachsen" eingibt, erscheint das Bundesland Dropdown. Es ist dort nicht möglich "Sachsen" als Bundesland auszuwählen. Alle anderen Bundesländer sind möglich.
Ich denke es liegt an der Überprüfung des Bundeslandes in Kombination zwischen den Bundesländern "Sachsen" und "Sachsen-Anhalt".
Gemeldet auf:
xtcModified v1.05 dated: 2010-07-18 SP1c
Überprüft auf (Kunde und modified Demoshop):
modified eCommerce Shopssoftware v1.06 rev 4642 dated: 2013-04-20
lg
Nicolas Gemsjäger
Fishnet Services
Attachments (0)
Note:
See TracTickets
for help on using tickets.

Kann ich bestätigen!
Lösung:
Suche in address_book_process.php nach:
$zone_query = xtc_db_query("select distinct zone_id from ".TABLE_ZONES." where zone_country_id = '".(int) $country."' and (zone_name like '".xtc_db_input($state)."%' or zone_code like '%".xtc_db_input($state)."%')");Ersetzen mit:
$zone_query = xtc_db_query("select distinct zone_id from ".TABLE_ZONES." where zone_country_id = '".(int) $country."' and (zone_name like '".xtc_db_input($state)."%' or zone_code like '%".xtc_db_input($state)."%')"); if (xtc_db_num_rows($zone_query) > 1) { $zone_query = xtc_db_query("select distinct zone_id from ".TABLE_ZONES." where zone_country_id = '".(int) $country."' and zone_name = '".xtc_db_input($state)."'"); }