﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
2315	popup_content.php - Prüfung ob $_GET['coID'] existiert kommt zu spät	web-looks.de	somebody	"Vorschlag zur Korrektur:

'''popup_content.php'''

Suchen nach:

{{{
$content_data = $main->getContentData((int)$_GET['coID'], '', '', (isset($_GET['preview']) ? true : false));

if (!isset($_GET['coID']) || $_GET['coID'] == '' || count($content_data) < 1) {
  die('Direct Access to this location is not allowed.');
}
}}}

Ersetzen mit:

{{{
$content_data = array();
if (!empty($_GET['coID'])) {
	$content_data = $main->getContentData((int)$_GET['coID'], '', '', (isset($_GET['preview']) ? true : false));
}

if (empty($content_data)) {
  die('Direct Access to this location is not allowed.');
}
}}}"	Bug/Fehler	closed	normal	modified-shop-2.0.8.0	Shop	2.0.7.2	fixed				
