Aleksander Machniak
2015-01-03 7b924535fdb6fd9c4a4767893d0d0c996383df29
program/lib/Roundcube/rcube_text2html.php
@@ -1,6 +1,6 @@
<?php
/**
/*
 +-----------------------------------------------------------------------+
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2008-2014, The Roundcube Dev Team                       |
@@ -57,6 +57,8 @@
        'end'    => '</div>',
        // enables links replacement
        'links'  => true,
        // string replacer class
        'replacer' => 'rcube_string_replacer',
    );
@@ -141,7 +143,7 @@
    {
        // make links and email-addresses clickable
        $attribs  = array('link_attribs' => array('rel' => 'noreferrer', 'target' => '_blank'));
        $replacer = new rcmail_string_replacer($attribs);
        $replacer = new $this->config['replacer']($attribs);
        if ($this->config['flowed']) {
            $flowed_char = 0x01;