瀏覽代碼

Use filter_var in guessBaseUrl

See https://github.com/FreshRSS/FreshRSS/issues/906
See https://github.com/FreshRSS/FreshRSS/pull/915/files#r35304704
Marien Fressinaud 11 年之前
父節點
當前提交
1e65fd687e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/Minz/Request.php

+ 1 - 1
lib/Minz/Request.php

@@ -103,7 +103,7 @@ class Minz_Request {
 			$url .= substr($path, -1) === '/' ? substr($path, 0, -1) : dirname($path);
 		}
 
-		return $url;
+		return filter_var($url, FILTER_SANITIZE_URL);
 	}
 
 	/**