﻿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.domain.de/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	new	normal		Shop	2.0.6.0					
