summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-06-16- bugfix do not overwrite 'smarty' template variable when {include ... ↵uwe.tews@googlemail.com2-2/+5
scope=parent} exits
2011-06-09fix smarty security_policy issue in plugins {html_image} and {fetch}rodneyrehm3-4/+7
2011-06-07- bugfix registerFilter() or registerPlugin() on template objects did ↵uwe.tews@googlemail.com2-2/+5
register to the main Smarty object if the register methods had been used on the main Smarty object before.
2011-06-03update versionmonte.ohrt1-0/+1
2011-05-29- bugfix <?xml..?> in templates did break "cache modified check"uwe.tews@googlemail.com2-291/+301
2011-05-14- bugfix error handling at stream resourcesuwe.tews@googlemail.com3-110/+110
2011-05-14- bugfix fopen() error handling at stream resourcesuwe.tews@googlemail.com2-54/+59
2011-05-13- bugfix condition starting with "-" did fail at {if} and {while} tagsuwe.tews@googlemail.com3-989/+1002
2011-04-22- workaround for PHP 5.2.13 bug in method_exists()uwe.tews@googlemail.com2-181/+182
2011-04-21- bugfix allow only fixed string as file attribute at {extends} taguwe.tews@googlemail.com2-16/+19
2011-04-01- bugfix do not run filters and default modifier when displaying the debug ↵uwe.tews@googlemail.com3-19/+22
template - bugfix of embedded double quotes within multi line strings (""")
2011-03-28- bugfix on error message in smarty_internal_compile_block.phpuwe.tews@googlemail.com4-123/+132
- bugfix mb handling in strip modifier - bugfix for Smarty2 style registered compiler function on unnamed attribute passing like {tag $foo $bar}
2011-03-16- bugfix on default {function} parameters when {function} was used in ↵uwe.tews@googlemail.com3-222/+226
nocache sections - bugfix on compiler object destruction. compiler_object property was by mistake unset.
2011-03-09-bugfix a variable filter should run before modifers on an output tag (see ↵uwe.tews@googlemail.com2-1389/+1410
change of 23/07/2010)
2011-03-08fixed config_load to only load defaults with no section definedmonte.ohrt2-10/+14
2011-03-03- bugfix internal rendered_content must be cleared after subtemplate was ↵uwe.tews@googlemail.com2-1/+2
included
2011-03-03do some updates to the textmonte.ohrt1-42/+41
2011-03-03- bugfix "smarty" template variable was not recreated when cached templated ↵uwe.tews@googlemail.com2-0/+5
had expired
2011-03-01- bugfix replace modifier did not work in 3.0.7 on systems without multibyte ↵uwe.tews@googlemail.com4-6/+15
support - bugfix {$smarty.template} could return in 3.0.7 parent template name instead of child name when it needed to compile
2011-02-25- bugfix for Smarty2 style compiler plugins on unnamed attribute passing ↵uwe.tews@googlemail.com2-2/+9
like {tag $foo $bar}
2011-02-24- bugfix $smarty->clearCache('some.tpl') did by mistake cache the template ↵uwe.tews@googlemail.com2-2/+7
object
2011-02-19- bugfix force default debug.tpl to be loaded by the file resource when ↵uwe.tews@googlemail.com3-2/+3
default_resource_type was modified
2011-02-18- bugfix removed possible race condition when isCached() was called for an ↵uwe.tews@googlemail.com2-1/+14
individually cached subtemplate
2011-02-17-improvement not to delete files starting with '.' from cache and template_c ↵uwe.tews@googlemail.com3-4/+7
folders on clearCompiledTemplate() and clearCache()
2011-02-16-improvement allow leading spaces on } tag closing if auto_literal is enableduwe.tews@googlemail.com2-4/+1
2011-02-16-fixed typo in exception message of Smarty_Internal_Templateuwe.tews@googlemail.com2-1/+4
2011-02-13(no commit message)uwe.tews@googlemail.com1-1/+1
2011-02-13- bufix replace $smarty->triggerError() by exceptionuwe.tews@googlemail.com2-1/+4
- removed obsolete {popup_init..} plugin from demo templates
2011-02-13remove popup_init from demo templatemonte.ohrt1-1/+0
2011-02-11update change log with version tagmonte.ohrt1-0/+2
2011-02-11fix typos, rewordingmonte.ohrt3-4/+4
2011-02-09- bugfix removed security hole when using {$smarty.template}uwe.tews@googlemail.com2-4/+5
2011-02-01- removed assert() from config and template parseruwe.tews@googlemail.com4-361/+358
2011-01-31- bugfix the lexer/parser did fail on special characters like VTuwe.tews@googlemail.com3-91/+108
2011-01-19flip test for ctype_digit, speed upmonte.ohrt1-1/+1
2011-01-17avoid preg for string matchmonte.ohrt1-2/+2
2011-01-16-bugfix of Iterator object handling in internal _count() methoduwe.tews@googlemail.com2-1/+2
2011-01-16-bugfix of ArrayAccess object handling in internal _count() methoduwe.tews@googlemail.com2-10/+10
2011-01-14fix memory leakuwe.tews@googlemail.com2-17/+11
2011-01-14- remove possible warninguwe.tews@googlemail.com1-0/+2
2011-01-14-bugfix removed memory leak while processing compileAllTemplatesuwe.tews@googlemail.com6-327/+327
2011-01-12- bugfix in {if} and {while} tag compiler when using assignments as ↵uwe.tews@googlemail.com3-7/+8
condition and nocache mode
2011-01-10- bugfix when using {$smarty.block.child} and name of {block} was in double ↵uwe.tews@googlemail.com3-2/+9
quoted string - bugfix updateParentVariables() was called twice when leaving {include} processing
2011-01-04remove overlib plugins - no longer supportedmonte.ohrt2-157/+0
2011-01-03fix mb_str_replace to work with utf8monte.ohrt4-49/+44
2010-12-31- bugfix dynamic configuration of $debugging_crtl did not workuwe.tews@googlemail.com4-29/+45
- bugfix default value of $config_read_hidden changed to false - bugfix format of attribute array on compiler plugins - bugfix getTemplateVars() could return value from wrong scope
2010-12-28- bugfix multiple {append} tags failed to compile.uwe.tews@googlemail.com3-4/+7
2010-12-22do not clone Smarty object on internal createTemplate() callsuwe.tews@googlemail.com2-5/+13
2010-12-21update html_options to support class and id attrsmonte.ohrt2-10/+28
2010-12-17- bugfix added missing support of $cache_attrs for registered pluginsuwe.tews@googlemail.com5-5/+12