From 474dcf05fdda40a00fca4744133b25b5e5fd8959 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 29 Sep 2022 11:13:18 +0200 Subject: Only match http(s) URLs for references Signed-off-by: Joas Schilling --- lib/public/IURLGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/public/IURLGenerator.php b/lib/public/IURLGenerator.php index 808ba66c862..be0edf61025 100644 --- a/lib/public/IURLGenerator.php +++ b/lib/public/IURLGenerator.php @@ -43,7 +43,7 @@ interface IURLGenerator { * * @since 25.0.0 */ - public const URL_REGEX = '/(\s|\n|^)(https?:\/\/)?((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|\n|$)/mi'; + public const URL_REGEX = '/(\s|\n|^)(https?:\/\/)((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|\n|$)/mi'; /** * Returns the URL for a route -- cgit v1.2.3