diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-08-07 14:24:00 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-08-07 14:24:00 +0200 |
commit | a79017e662273c519a2c50d10ef12c11885d2d87 (patch) | |
tree | 94fc3d87073944defe88dc06725189d936f1522b /program/lib/Roundcube | |
parent | 0bac7b32de62006e925fb0b788c757b6c23b8a5e (diff) |
Fix base URL resolving on attribute values with no quotes (#1489275)
Diffstat (limited to 'program/lib/Roundcube')
-rw-r--r-- | program/lib/Roundcube/rcube_base_replacer.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube_base_replacer.php b/program/lib/Roundcube/rcube_base_replacer.php index e41ccb1d9..a59bba926 100644 --- a/program/lib/Roundcube/rcube_base_replacer.php +++ b/program/lib/Roundcube/rcube_base_replacer.php @@ -44,8 +44,8 @@ class rcube_base_replacer public function replace($body) { return preg_replace_callback(array( - '/(src|background|href)=(["\']?)([^"\'\s]+)(\2|\s|>)/Ui', - '/(url\s*\()(["\']?)([^"\'\)\s]+)(\2)\)/Ui', + '/(src|background|href)=(["\']?)([^"\'\s>]+)(\2|\s|>)/i', + '/(url\s*\()(["\']?)([^"\'\)\s]+)(\2)\)/i', ), array($this, 'callback'), $body); } |