summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-05-21- new feature The named capture buffers can now be accessed also as arrayuwetews4-12/+35
See NEWS_FEATURES.txt https://github.com/smarty-php/smarty/issues/366
2017-05-19Merge pull request #361 from zonuexe/patch-1uwetews1-1/+1
Fix markdown
2017-05-19Merge pull request #354 from jcodt/masteruwetews1-2/+3
Fix markdown titles
2017-05-19- change properties $accessMap and $obsoleteProperties from private to protecteduwetews2-4/+8
https://github.com/smarty-php/smarty/issues/351
2017-05-11Fix markdownUSAMI Kenta1-3/+4
affected by GitHub's Markdown parser change https://githubengineering.com/a-formal-spec-for-github-markdown/
2017-04-25Fix markdown titlesjcodt1-2/+3
2017-04-24- fix spelling ↵uwetews2-2/+5
https://github.com/smarty-php/smarty/commit/e3eda8a5f5653d8abb960eb1bc47e3eca679b1b4#commitcomment-21803095
2017-04-17- correct generated code on empty() and isset() call, observe change PHP ↵uwetews3-43/+72
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 ↵uwetews3-73/+44
behaviour since PHP 5.5 https://github.com/smarty-php/smarty/issues/347 (reverted from commit cfd8bf32b0680d4390a5e6d4f498aa2b387f4dda)
2017-04-17Add PHP 7.1 to travis testsuwetews1-0/+1
2017-04-17- correct generated code on empty() and isset() call, observe change PHP ↵uwetews3-44/+73
behaviour since PHP 5.5 https://github.com/smarty-php/smarty/issues/347
2017-04-14- merge pull requests https://github.com/smarty-php/smarty/pull/349, ↵uwetews1-0/+4
https://github.com/smarty-php/smarty/pull/322 and https://github.com/smarty-php/smarty/pull/337 to fix spelling and annotation
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/spellinguwetews11-16/+16
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 ↵uwetews2-3/+9
https://github.com/smarty-php/smarty/issues/350
2017-04-13Prepare 3.1.32-devuwetews2-5/+7
2017-04-08spelling fixesklemens11-16/+16
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.31uwetews3-33/+3
2016-11-23- move template object cache into static variablesuwetews4-24/+49
2016-11-19- change version checkinguwetews3-27/+9
2016-11-19- bugfix inheritance root child templates containing nested {block}{/block} ↵uwetews3-2/+6
could call sub-bock content from parent template https://github.com/smarty-php/smarty/issues/317
2016-11-11- smaller speed optimizationuwetews2-3/+5
2016-11-11touchuwetews1-1/+1
2016-11-11touchuwetews1-1/+1
2016-11-11fixed spelling chilek commented on c4746e9uwetews4-58/+58
2016-11-11- bugfix when Smarty is using a cached template object on Smarty::fetch() or ↵uwetews2-1/+8
Smarty::isCached() the inheritance data must be removed https://github.com/smarty-php/smarty/issues/312
2016-11-08add utility to build Smarty_Internal_Testinstalluwetews2-0/+31
2016-11-08Merge pull request #295 from glensc/patch-1uwetews1-0/+8
exclude files from git export
2016-11-08- add bootstrap file to load and register Smarty_Autoloader. Change ↵uwetews6-31/+58
composer.json to make it known to composer
2016-11-07- optimization of lexer speed https://github.com/smarty-php/smarty/issues/311uwetews9-159/+159
2016-10-27- bugfix template function definitions array has not been cached between ↵uwetews5-24/+35
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 ↵uwetews3-3/+15
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 ↵uwetews3-8/+24
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 ↵uwetews3-3/+5
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 ↵uwetews3-5/+6
https://github.com/smarty-php/smarty/issues/304
2016-10-19- bugfix {make_nocache $var} did fail when variable value did contain '\' ↵uwetews3-3/+6
https://github.com/smarty-php/smarty/issues/305
2016-10-12- bugfix {include} with template names including variable or constants could ↵uwetews3-4/+7
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 objectsuwetews8-35/+39
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 ↵uwetews2-3/+12
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 ↵uwetews7-907/+892
https://github.com/smarty-php/smarty/issues/300
2016-09-28- bugfix the generated code for calling a subtemplate must pass the template ↵uwetews3-3/+6
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 ↵uwetews2-1/+6
Smarty::fetch() calls the template and config variables must be cleared https://github.com/smarty-php/smarty/issues/297
2016-09-24exclude files from git exportElan Ruusamäe1-0/+8
add files to be excluded from git export visible when used via composer --prefer-dist