- bugfix when {foreach} was looping over an object the total property like {$item@total} did always return 1 https://github.com/smarty-php/smarty/issues/281

This commit is contained in:
uwetews
2016-09-07 00:41:31 +02:00
parent e5bbc052b1
commit 0429272370
3 changed files with 4 additions and 3 deletions

View File

@@ -2,7 +2,8 @@
07.09.2016 07.09.2016
- bugfix using nocache like attribute with value true like {plugin nocache=true} did not work https://github.com/smarty-php/smarty/issues/285 - bugfix using nocache like attribute with value true like {plugin nocache=true} did not work https://github.com/smarty-php/smarty/issues/285
- bugfix uppercase TRUE, FALSE and NULL did not work when security was enabled https://github.com/smarty-php/smarty/issues/282 - bugfix uppercase TRUE, FALSE and NULL did not work when security was enabled https://github.com/smarty-php/smarty/issues/282
- bugfix when {foreach} was looping over an object the total property like {$item@total} did always return 1 https://github.com/smarty-php/smarty/issues/281
01.09.2016 01.09.2016
- performance require_once should be called only once for shared plugins https://github.com/smarty-php/smarty/issues/280 - performance require_once should be called only once for shared plugins https://github.com/smarty-php/smarty/issues/280

View File

@@ -114,7 +114,7 @@ class Smarty extends Smarty_Internal_TemplateBase
/** /**
* smarty version * smarty version
*/ */
const SMARTY_VERSION = '3.1.31-dev/10'; const SMARTY_VERSION = '3.1.31-dev/11';
/** /**
* define variable scopes * define variable scopes

View File

@@ -130,7 +130,7 @@ class Smarty_Internal_Runtime_Foreach
return 1; return 1;
} }
} elseif (is_object($value)) { } elseif (is_object($value)) {
return count($value); return count((array)$value);
} }
return 0; return 0;
} }