Opened 4 years ago
Last modified 4 years ago
#2125 closed Bug/Fehler
Fehler im Versandmodul (Selbstabholung) — at Version 1
| Reported by: | anonymous | Owned by: | somebody |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.7.0 |
| Component: | Admin | Version: | 2.0.6.0 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description (last modified by )
Wenn Sie Probleme mit dem Speichern von Änderungen im Versandmodul haben (Problem mit Dropdowns), müssen Sie folgende Änderungen in: /admin/includes/functions/general.php
vornehmen.
Finde:
function xtc_cfg_pull_down_country_list($country_id) {
return xtc_draw_pull_down_menu('configuration_value', xtc_get_countries(), $country_id);
}
ersetze
function xtc_cfg_pull_down_country_list($country_id, $key = '') {
$name = (($key) ? 'configuration['.$key.']' : 'configuration_value');
return xtc_draw_pull_down_menu($name, xtc_get_countries(), $country_id);
}
Dieses Problem könnte auch in anderen Modulen auftreten.
Diese Lösung sollte für alle Module funktionieren, bei denen das Problem mit dem Speichern des Landes aus der Auswahlliste besteht.
Change History (1)
comment:1 by , 4 years ago
| Description: | modified (diff) |
|---|---|
| Milestone: | → modified-shop-2.0.6.1 |
| Version: | → 2.0.6.0 |
Note:
See TracTickets
for help on using tickets.
