summaryrefslogtreecommitdiff
path: root/libs
AgeCommit message (Collapse)AuthorFilesLines
2017-05-21- new feature The named capture buffers can now be accessed also as arrayuwetews2-11/+19
See NEWS_FEATURES.txt https://github.com/smarty-php/smarty/issues/366
2017-05-19- change properties $accessMap and $obsoleteProperties from private to protecteduwetews1-3/+3
https://github.com/smarty-php/smarty/issues/351
2017-04-24- fix spelling ↵uwetews1-2/+2
https://github.com/smarty-php/smarty/commit/e3eda8a5f5653d8abb960eb1bc47e3eca679b1b4#commitcomment-21803095
2017-04-17- correct generated code on empty() and isset() call, observe change PHP ↵uwetews2-43/+68
behaviour since PHP 5.5 https://github.com/smarty-php/smarty/issues/347
2017-04-17- correct generated code on empty() and isset() call, observe change PHP ↵uwetews2-69/+44
behaviour since PHP 5.5 https://github.com/smarty-php/smarty/issues/347 (reverted from commit cfd8bf32b0680d4390a5e6d4f498aa2b387f4dda)
2017-04-17- correct generated code on empty() and isset() call, observe change PHP ↵uwetews2-44/+69
behaviour since PHP 5.5 https://github.com/smarty-php/smarty/issues/347
2017-04-14Merge pull request #322 from simivar/patch-1uwetews1-1/+1
Fix annotation for addPluginsDir()
2017-04-14Merge pull request #349 from ka7/feature/spellinguwetews4-4/+4
spelling fixes
2017-04-14Merge pull request #337 from SvenRtbg/patch-1uwetews1-1/+1
Fix typo in @method annotation
2017-04-13- bugfix array_merge() parameter should be checked ↵uwetews1-2/+6
https://github.com/smarty-php/smarty/issues/350
2017-04-13Prepare 3.1.32-devuwetews1-4/+4
2017-04-08spelling fixesklemens4-4/+4
2017-02-14Fix typo in @method annotationSvenRtbg1-1/+1
It's `setDefaultModifiers()`, not `setDefaultModifier()`
2016-12-29Fix annotation for addPluginsDir()simivar1-1/+1
Param of [addPluginsDir()](http://www.smarty.net/docs/en/api.add.plugins.dir.tpl) can be null, array or a string. Fixed annotation so there will be no IDE warnings.
2016-12-14prepare 3.1.31 releasev3.1.31uwetews1-2/+2
2016-11-23- move template object cache into static variablesuwetews3-22/+44
2016-11-19- change version checkinguwetews2-27/+8
2016-11-19- bugfix inheritance root child templates containing nested {block}{/block} ↵uwetews2-2/+2
could call sub-bock content from parent template https://github.com/smarty-php/smarty/issues/317
2016-11-11- smaller speed optimizationuwetews1-3/+4
2016-11-11touchuwetews1-1/+1
2016-11-11touchuwetews1-1/+1
2016-11-11fixed spelling chilek commented on c4746e9uwetews2-51/+51
2016-11-11- bugfix when Smarty is using a cached template object on Smarty::fetch() or ↵uwetews1-1/+4
Smarty::isCached() the inheritance data must be removed https://github.com/smarty-php/smarty/issues/312
2016-11-08- add bootstrap file to load and register Smarty_Autoloader. Change ↵uwetews3-25/+39
composer.json to make it known to composer
2016-11-07- optimization of lexer speed https://github.com/smarty-php/smarty/issues/311uwetews5-128/+137
2016-10-27- bugfix template function definitions array has not been cached between ↵uwetews4-23/+30
Smarty::fetch() and Smarty::display() calls https://github.com/smarty-php/smarty/issues/301
2016-10-23- improvement/bugfix when Smarty::fetch() is called on a template object the ↵uwetews1-7/+8
inheritance and tplFunctions property should be copied to the called template object
2016-10-23- improvement/bugfix when Smarty::fetch() is called on a template object the ↵uwetews2-3/+11
inheritance and tplFunctions property should be copied to the called template object
2016-10-21- bugfix for compile locking touched timestamp of old compiled file was not ↵uwetews2-8/+21
restored on compilation error https://github.com/smarty-php/smarty/issues/308
2016-10-20- bugfix nocache code was not removed in cache file when subtemplate did ↵uwetews2-3/+1
contain PHP short tags in text but no other nocache code https://github.com/smarty-php/smarty/issues/300
2016-10-19- bugfix {make_nocache $var} remove spaces from variable value ↵uwetews2-5/+5
https://github.com/smarty-php/smarty/issues/304
2016-10-19- bugfix {make_nocache $var} did fail when variable value did contain '\' ↵uwetews2-3/+3
https://github.com/smarty-php/smarty/issues/305
2016-10-12- bugfix {include} with template names including variable or constants could ↵uwetews2-4/+3
fail after bugfix from 28.09.2016 https://github.com/smarty-php/smarty/issues/302
2016-10-08- optimization move runtime extension for template functions into Smarty objectsuwetews7-35/+36
2016-09-30use absolute path normalizaionuwetews1-1/+1
2016-09-30- improvement new Smarty::$extends_recursion property to disable execution ↵uwetews3-4/+5
of {extends} in templates called by extends resource https://github.com/smarty-php/smarty/issues/296
2016-09-29- improvement new Smarty::$extends_recursion property to disable execution ↵uwetews4-11/+49
of {extends} in templates called by extends resource https://github.com/smarty-php/smarty/issues/296
2016-09-28- bugfix nocache hash was not removed for <?xml ?> tags in subtemplates ↵uwetews4-896/+889
https://github.com/smarty-php/smarty/issues/300
2016-09-28- bugfix the generated code for calling a subtemplate must pass the template ↵uwetews2-2/+2
resource name in single quotes https://github.com/smarty-php/smarty/issues/299
2016-09-27- bugfix when Smarty does use an internally cached template object on ↵uwetews1-1/+2
Smarty::fetch() calls the template and config variables must be cleared https://github.com/smarty-php/smarty/issues/297
2016-09-20- temporary fix for https://github.com/smarty-php/smarty/issues/293 main ↵uwetews2-5/+4
reason still under investigation
2016-09-20- improvement new tags {block_parent} {block_child} in template inheritanceuwetews6-53/+137
2016-09-20- bugfix some $smarty special template variables are no longer accessed as ↵uwetews3-74/+86
real variable. using them on calls like {if isset($smarty.foo)} or {if empty($smarty.foo)} will fail http://www.smarty.net/forums/viewtopic.php?t=26222
2016-09-19- cleanup convert cache resource file method clear into runtime extensionuwetews5-33/+40
2016-09-19- optimization clear compiled and cached folder completely on detected ↵uwetews4-12/+43
version change
2016-09-15- improvement make Smarty::clearCompiledTemplate() on custom resource ↵uwetews2-2/+2
independent from changes of templateId computation
2016-09-15- bugfix assigning a variable in if condition by function like {if $value = ↵uwetews2-19/+15
array_shift($array)} the function got called twice https://github.com/smarty-php/smarty/issues/291
2016-09-15- bugfix calling $smarty->isCached() on a not existing cache file with ↵uwetews1-1/+4
$smarty->cache_locking = true; could cause a 10 second delay http://www.smarty.net/forums/viewtopic.php?t=26282
2016-09-15- bugfix function plugins called with assign attribute like {foo ↵uwetews3-5/+5
assign='bar'} did not output returned content because because assumption was made that it was assigned to a variable https://github.com/smarty-php/smarty/issues/292
2016-09-15- bugfix assigning a variable in if condition by function like {if $value = ↵uwetews3-22/+27
array_shift($array)} the function got called twice https://github.com/smarty-php/smarty/issues/291