mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 18:34:27 +02:00
- revert output buffer flushing on display, echo content again because possible problems when PHP files had
characters (newline} after ?> at file end https://github.com/smarty-php/smarty/issues/187
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
===== 3.1.30-dev ===== (xx.xx.xx)
|
||||
19.02.2016
|
||||
- revert output buffer flushing on display, echo content again because possible problems when PHP files had
|
||||
characters (newline} after ?> at file end https://github.com/smarty-php/smarty/issues/187
|
||||
|
||||
14.02.2016
|
||||
- new tag {make_nocache} read NEW_FEATURES.txt https://github.com/smarty-php/smarty/issues/110
|
||||
- optimization of sub-template processing
|
||||
|
@@ -121,7 +121,7 @@ class Smarty extends Smarty_Internal_TemplateBase
|
||||
/**
|
||||
* smarty version
|
||||
*/
|
||||
const SMARTY_VERSION = '3.1.30-dev/44';
|
||||
const SMARTY_VERSION = '3.1.30-dev/45';
|
||||
|
||||
/**
|
||||
* define variable scopes
|
||||
|
@@ -180,8 +180,7 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase
|
||||
) {
|
||||
echo $this->smarty->ext->_filterHandler->runFilter('output', ob_get_clean(), $this);
|
||||
} else {
|
||||
ob_end_flush();
|
||||
flush();
|
||||
echo ob_get_clean();
|
||||
}
|
||||
}
|
||||
if ($this->smarty->debugging) {
|
||||
|
Reference in New Issue
Block a user