﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
2051	redirect.php - Fehlerhafte Umleitung, wenn für Hersteller keine URL hinterlegt wurde.	web-looks.de	somebody	"Wenn bei einem Hersteller keine URL angegeben wird, dann führt die redirect.php zu einem Fehler.

https://www.example.com/redirect.php?action=manufacturer&manufacturers_id=7

-------------------

Lösung

/redirect.php

Suchen nach:

{{{
xtc_redirect(check_url_scheme($manufacturer['manufacturers_url']));
}}}

Ersetzen mit:

{{{
if (!empty($manufacturer['manufacturers_url'])) {
	xtc_redirect(check_url_scheme($manufacturer['manufacturers_url']));
}
}}}
"	Bug/Fehler	closed	normal	modified-shop-2.0.7.0	Shop	2.0.6.0	fixed				
