summaryrefslogtreecommitdiff
path: root/program/include/rcmail_string_replacer.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-01-01 12:31:14 +0100
committerAleksander Machniak <alec@alec.pl>2014-01-01 12:31:14 +0100
commit0301d9347f8c59882cdd7b6ed59686b286a77876 (patch)
treec0da8e84a741f49251974a6a78aa8faf4851d77f /program/include/rcmail_string_replacer.php
parentd575e46067c06f1165adb249865f3812e270df12 (diff)
CS fixes
Diffstat (limited to 'program/include/rcmail_string_replacer.php')
-rw-r--r--program/include/rcmail_string_replacer.php21
1 files changed, 10 insertions, 11 deletions
diff --git a/program/include/rcmail_string_replacer.php b/program/include/rcmail_string_replacer.php
index 4fbc611c9..6771375e1 100644
--- a/program/include/rcmail_string_replacer.php
+++ b/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,7 +19,6 @@
+-----------------------------------------------------------------------+
*/
-
/**
* Helper class for turning URLs and email addresses in plaintext content
* into clickable links.
@@ -40,15 +39,15 @@ class rcmail_string_replacer extends rcube_string_replacer
*/
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) : '';
}
-
-} \ No newline at end of file
+}