Modify ↓
Opened 4 years ago
Closed 4 years ago
#2125 closed Bug/Fehler (fixed)
Fehlender Parameter in cfg Funktionen
| 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.
Attachments (0)
Change History (4)
comment:1 by , 4 years ago
| Description: | modified (diff) |
|---|---|
| Milestone: | → modified-shop-2.0.6.1 |
| Version: | → 2.0.6.0 |
comment:2 by , 4 years ago
comment:3 by , 4 years ago
| Summary: | Fehler im Versandmodul (Selbstabholung) → Fehlender Parameter in cfg Funktionen |
|---|
Note:
See TracTickets
for help on using tickets.

Wann genau kann es denn zu dem "Problem" kommen?
Es wäre schön, wenn wir das nachvollziehen könnten.