﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
1816	Undefined index: customer_country_id + customer_zone_id	web-looks.de	somebody	"Problem: Es fehlt die Prüfung, ob $_SERVER[customer_country_id] und $_SERVER[customer_zone_id] existieren.

/inc/xtc_get_tax_rate.inc.php 
/inc/xtc_get_tax_description.inc.php

Suchen nach:

{{{
if (!isset($_SESSION['customer_id'])) {
}}}

Ersetzen mit:

{{{
if (empty($_SESSION['customer_id']) || empty($_SESSION['customer_country_id'])) {
}}}

Suchen nach:

{{{
$zone_id = $_SESSION['customer_zone_id'];
}}}

Ersetzen mit:

{{{
$zone_id = (!empty($_SESSION['customer_zone_id']) ? $_SESSION['customer_zone_id'] : 0);
}}}"	Bug/Fehler	closed	normal		Shop	2.0.5.1	invalid				
