Index: /changelog
===================================================================
--- /changelog	(revision 7707)
+++ /changelog	(revision 7708)
@@ -355,2 +355,3 @@
 - Feature: Suche nach ID: in der Produktverwaltung im Suchstring
 - Bugfix: Die Funktion "Zuordnung Produkt zu Artikel", erzwingt nicht mehr die neu generierung des Posts, nur noch bei Bedarf
+- Bugfix: Die Request ÃberprÃŒfung fÃŒr lokale URLs erlaubt auch URLs ohne Protokoll, die mit "/" beginnen
Index: /lib/functions.inc.php
===================================================================
--- /lib/functions.inc.php	(revision 7707)
+++ /lib/functions.inc.php	(revision 7708)
@@ -605,5 +605,5 @@
 				$url_local .= $_SERVER['HTTP_HOST'];
 				
-				if (substr($val, 0, strlen($url_local)) === $url_local) $bReturn = true;
+				if (substr($val, 0, strlen($url_local)) === $url_local || substr($val, 0, 1) === '/') $bReturn = true;
 								
 				break;
