mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix URLS with ! in query were not properly activated, leaving out part of the URL
This commit is contained in:
parent
0efe1e865f
commit
85ded6f1fc
@ -62,7 +62,7 @@ class Html
|
||||
// First match things beginning with http:// (or other protocols)
|
||||
$Protocol = '(http:\/\/|(ftp:\/\/|https:\/\/))'; // only http:// gets removed, other protocolls are shown
|
||||
$Domain = '([\w-]+\.[\w\-.]+)';
|
||||
$Subdir = '([\w\-\.,@?^=%&;:\/~\+#]*[\w\-\@?^=%&\/~\+#])?';
|
||||
$Subdir = '([\w\-\.,@?^=%&!;:\/~\+#]*[\w\-\@?^=%&\/~\+#])?';
|
||||
$optStuff = '("|"|;)?';
|
||||
$Expr = '/' . $NotAnchor . $Protocol . $Domain . $Subdir . $optStuff . '/i';
|
||||
// use preg_replace_callback as we experienced problems with https links
|
||||
|
Loading…
Reference in New Issue
Block a user