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: web-looks <info@…> 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 Torsten Riemer, 7 years ago

Milestone: modified-shop-2.0.5.0
Owner: changed from somebody to Gerhard Waldemair
Status: newassigned

comment:2 by Gerhard Waldemair, 7 years ago

Resolution: fixed
Status: assignedclosed

In 11757:

fix #1553

Modify Ticket

Action
as closed The owner will remain Gerhard Waldemair.
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.