﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
1553	Smarty Variable $state und $display_state im Template nicht verfügbar	web-looks <info@…>	Gerhard Waldemair	"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');
}}}
"	Bug/Fehler	closed	normal	modified-shop-2.0.5.0	Admin	2.0.4.2	fixed				
