Aleksander Machniak
2014-08-24 75bbada03b0e616248ec3458d1a6ee98bfc03659
program/include/rcmail_string_replacer.php
@@ -5,7 +5,7 @@
 | program/include/rcmail_string_replacer.php                            |
 |                                                                       |
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2012, The Roundcube Dev Team                            |
 | Copyright (C) 2012-2013, The Roundcube Dev Team                       |
 |                                                                       |
 | Licensed under the GNU General Public License version 3 or            |
 | any later version with exceptions for skins & plugins.                |
@@ -19,12 +19,11 @@
 +-----------------------------------------------------------------------+
*/
/**
 * Helper class for turning URLs and email addresses in plaintext content
 * into clickable links.
 *
 * @package    Core
 * @package Webmail
 * @subpackage Utils
 */
class rcmail_string_replacer extends rcube_string_replacer
@@ -40,15 +39,15 @@
     */
    public function mailto_callback($matches)
    {
      $href   = $matches[1];
      $suffix = $this->parse_url_brackets($href);
        $href   = $matches[1];
        $suffix = $this->parse_url_brackets($href);
      $i = $this->add(html::a(array(
          'href' => 'mailto:' . $href,
          'onclick' => "return ".rcmail_output::JS_OBJECT_NAME.".command('compose','".rcube::JQ($href)."',this)",
        ), rcube::Q($href)) . $suffix);
        $i = $this->add(html::a(array(
            'href'    => 'mailto:' . $href,
            'onclick' => "return ".rcmail_output::JS_OBJECT_NAME.".command('compose','".rcube::JQ($href)."',this)",
            ),
            rcube::Q($href)) . $suffix);
      return $i >= 0 ? $this->get_replacement($i) : '';
        return $i >= 0 ? $this->get_replacement($i) : '';
    }
}
}