Modify

Opened 12 years ago

Closed 12 years ago

#213 closed Bug/Fehler (fixed)

Bundeslandauswahl "Sachsen" nicht möglich

Reported by: gemsjaeger@… 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)

Change History (2)

comment:1 by Ronald Parcinski, 12 years ago

Owner: changed from somebody to Ronald Parcinski
Status: newaccepted

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)."'");
			}


comment:2 by Ronald Parcinski, 12 years ago

Resolution: fixed
Status: acceptedclosed

In 6365:

fix #213

Modify Ticket

Action
as closed The owner will remain Ronald Parcinski.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.