diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-22 14:09:54 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-22 14:09:54 +0200 |
commit | 70229cbbfc2d6e1a8c013aebd00ad9a593fcc350 (patch) | |
tree | 4061ef116ab2d7e7476de97e603534e100d255e9 /program/lib/Roundcube | |
parent | 1041aa46da9fe177d33aae1f1bf4fc1a1eb79529 (diff) |
Fix incorrect handling of some specific links (#1489060)
Diffstat (limited to 'program/lib/Roundcube')
-rw-r--r-- | program/lib/Roundcube/rcube_string_replacer.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube_string_replacer.php b/program/lib/Roundcube/rcube_string_replacer.php index b8768bc98..0fc90a55a 100644 --- a/program/lib/Roundcube/rcube_string_replacer.php +++ b/program/lib/Roundcube/rcube_string_replacer.php @@ -95,12 +95,12 @@ class rcube_string_replacer $attrib = (array)$this->options['link_attribs']; $attrib['href'] = $url_prefix . $url; - $i = $this->add($prefix . html::a($attrib, rcube::Q($url)) . $suffix); + $i = $this->add(html::a($attrib, rcube::Q($url)) . $suffix); } // Return valid link for recognized schemes, otherwise // return the unmodified string for unrecognized schemes. - return $i >= 0 ? $this->get_replacement($i) : $matches[0]; + return $i >= 0 ? $prefix . $this->get_replacement($i) : $matches[0]; } /** |