Modify ↓
Opened 7 years ago
Closed 7 years ago
#1553 closed Bug/Fehler (fixed)
Smarty Variable $state und $display_state im Template nicht verfügbar
| Reported by: | Owned by: | Gerhard Waldemair | |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.5.0 |
| Component: | Admin | Version: | 2.0.4.2 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
state und display_state werden $smarty, statt $module_smarty zugewiesen und sind daher im Template nicht vorhanden.
Betroffene Dateien:
/includes/modules/address_book_details.php
/includes/modules/checkout_new_address.php
Vorschlag zur Korrektur:
Suchen nach:
$smarty->assign('display_state', '');
Ersetzen mit:
$module_smarty->assign('display_state', '');
Suchen nach (2x):
$smarty->assign('display_state', ' style="display:none"');
Ersetzen mit:
$module_smarty->assign('display_state', ' style="display:none"');
Suchen nach:
$smarty->assign('state', '0');
Ersetzen mit:
$module_smarty->assign('state', '0');
Attachments (0)
Change History (2)
comment:1 by , 7 years ago
| Milestone: | → modified-shop-2.0.5.0 |
|---|---|
| Owner: | changed from to |
| Status: | new → assigned |
comment:2 by , 7 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.

In 11757: