1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-15 11:04:18 +02:00

Email template simplification

This commit is contained in:
Cameron
2016-05-20 15:04:51 -07:00
parent efbd6c3c2c
commit 86143e2dff
6 changed files with 53 additions and 25 deletions

View File

@@ -247,11 +247,12 @@ class e_parse extends e_parser
* Constructor - keep it public for backward compatibility
still some new e_parse() in the core
*
* @return void
*/
public function __construct()
{
// initialise the type of UTF-8 processing methods depending on PHP version and mb string extension
parent::__construct();
$this->init();
$this->initCharset();
@@ -3188,7 +3189,10 @@ class e_parser
private $scriptAccess = false; // nobody.
public function __construct()
/**
* e_parser constructor.
*/
public function __construct()
{
$this->init();
@@ -4421,7 +4425,7 @@ return;
{
$value = preg_replace('/^<pre[^>]*>/', '', $value);
$value = str_replace("</pre>", "", $value);
$value = str_replace("<br></br>", PHP_EOL, $value);
$value = str_replace('<br></br>', PHP_EOL, $value);
}
if($node->nodeName == 'code')