mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
Fix #162
This commit is contained in:
parent
32755c3787
commit
46708c6195
@ -352,7 +352,7 @@ class Template extends Render
|
||||
if($this->_options & Fenom::AUTO_STRIP) {
|
||||
|
||||
$text = preg_replace('/\s+/uS', ' ', str_replace(array("\r", "\n"), " ", $text));
|
||||
// $text = preg_replace('/\s*([\pP\pS]+)\s*/uS', '$1', $text);
|
||||
$text = str_replace("> <", "><", $text);
|
||||
}
|
||||
$this->_body .= $text;
|
||||
}
|
||||
|
@ -347,7 +347,7 @@ class FenomTest extends \Fenom\TestCase
|
||||
<a href="/item/{\$one}">number {\$num.1}</a>
|
||||
</div>
|
||||
TPL;
|
||||
$this->assertRender($tpl, '<div class="item item-one"> <a href="/item/1">number one</a> </div>');
|
||||
$this->assertRender($tpl, '<div class="item item-one"><a href="/item/1">number one</a></div>');
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user