summaryrefslogtreecommitdiff
path: root/libs
AgeCommit message (Collapse)AuthorFilesLines
2010-12-11- bugfix nested block tags in template inheritance child templates did not ↵uwe.tews@googlemail.com2-17/+8
work correctly - bugfix {$smarty.current_dir} in child template did not point to dir of child template
2010-12-06- bugfix getTemplateVars() should return 'null' instead dropping E_NOTICE on ↵uwe.tews@googlemail.com1-1/+1
an unassigned variable
2010-12-05- bugfix empty($foo) in {if} did drop a notice when $foo was not assigneduwe.tews@googlemail.com1-880/+884
2010-12-05- bugfix missing declaration of $smarty in Smarty classuwe.tews@googlemail.com1-0/+2
2010-12-01- other update regarding {debug}uwe.tews@googlemail.com2-17/+7
2010-12-01- improvement of {debug} tag outputuwe.tews@googlemail.com2-124/+168
2010-11-27-change run output filter before cache file is written (as in Smarty2)uwe.tews@googlemail.com3-2/+5
2010-11-24-bugfix on parser at !$foo|modifieruwe.tews@googlemail.com3-2122/+2220
-change parser logic when assignments used as condition in {if] and {while} to allow assign to array element
2010-11-23-bugfix allow integer as attribute name in plugin callsuwe.tews@googlemail.com2-14/+17
-change trimm whitespace from error message, removed long list of expected tokens
2010-11-22- added error message for illegal variable file attributes at {extends...} tagsuwe.tews@googlemail.com1-0/+3
2010-11-22- bugfix on template inheritance when an {extends} tag was inserted by a ↵uwe.tews@googlemail.com1-1/+1
prefilter
2010-11-20revert change of 19/11/2010 - bugfix on template inheritance. prefilter did ↵uwe.tews@googlemail.com2-10/+1
not run over child blocks It was no error
2010-11-20- bugfix on block plugins with modifiersuwe.tews@googlemail.com7-754/+780
- bugfix on template inheritance. prefilter did not run over child blocks
2010-11-18- change on handling of unassigned template variable -- default will drop ↵uwe.tews@googlemail.com4-180/+171
E_NOTICE - bugfix on Smarty2 wrapper load_filter() did not work
2010-11-18(no commit message)uwe.tews@googlemail.com1-1/+0
2010-11-17-bugfix in function.fetch.php, reference to undefined $smartyuwe.tews@googlemail.com1-1/+1
2010-11-17- bugfix on {block} if name did contain '-'uwe.tews@googlemail.com2-3/+5
2010-11-17- bugfix on {call} with variable function nameuwe.tews@googlemail.com3-5/+15
2010-11-16- bugfix on default parameter for {function}uwe.tews@googlemail.com2-4/+2
2010-11-16- bugfix whitespace in front of "<?php" in ↵uwe.tews@googlemail.com3-139/+155
smarty_internal_compile_private_block_plugin.php - bugfix {$smarty.now} did compile incorrectly - bugfix on reset(),end(),next(),prev(),current() within tempaltes
2010-11-15- bugfix captured content could not be accessed globallyuwe.tews@googlemail.com5-4/+12
- bugfix Smarty2 wrapper functions could not be call from within plugins
2010-11-15- bugfix when using {$smarty.session} as objectuwe.tews@googlemail.com7-155/+175
- bugfix scoping problem on $smarty object passed to filters
2010-11-14- small performace patch in Smarty classuwe.tews@googlemail.com1-4/+4
2010-11-14- bugfix isset() did not allow multiple parameteruwe.tews@googlemail.com4-855/+865
- improvment of some error messages - bugfix html_image did use removed property $request_use_auto_globals
2010-11-13- bugfix overloading problem when $smarty->fetch()/display() have been used ↵uwe.tews@googlemail.com2-5/+17
in plugins
2010-11-13- code cleanupuwe.tews@googlemail.com3-17/+13
2010-11-13- bugix overloading problem when $smarty->fetch()/display() have been used ↵uwe.tews@googlemail.com1-9/+21
in plugins (introduced with 3.0.2)
2010-11-13- improvement remove last linebreak from {function} definitionuwe.tews@googlemail.com1-0/+5
2010-11-13- fixed internal_config (removed unwanted code line)uwe.tews@googlemail.com1-1/+0
2010-11-13- reverted location of loadPlugin() to Smarty classuwe.tews@googlemail.com24-109/+69
- fixed comments in plugins
2010-11-13- bugfix on {debug}uwe.tews@googlemail.com2-4/+13
2010-11-12- reactivated $error_reporting property handlinguwe.tews@googlemail.com28-68/+77
- fixed typo in compile_continue - fixed security in {fetch} plugin - changed back plugin parameters to two. second is template object with transparent access to Smarty object - fixed {config_load} scoping form compile time to run time
2010-11-12- reactivated $error_reporting property handlinguwe.tews@googlemail.com1-0/+6
2010-11-11- major update including some API changesuwe.tews@googlemail.com59-3135/+3171
2010-11-10(no commit message)uwe.tews@googlemail.com1-2/+2
2010-11-10- observe compile_id also for config filesuwe.tews@googlemail.com1-0/+5
2010-11-09-bugfix on complex expressions as start value for {for} taguwe.tews@googlemail.com1-2/+2
2010-11-04- bugfix do not allow access of dynamic and private object members of ↵uwe.tews@googlemail.com1-96/+120
assigned objects when security is enabled.
2010-11-01- bugfix related to E_NOTICE change. {if empty($foo)} did fail when $foo ↵uwe.tews@googlemail.com1-85/+86
contained a string
2010-10-28- bugfix on compiling modifiers within $smarty special vars like ↵uwe.tews@googlemail.com1-1/+1
{$smarty.post.{$foo|lower}}
2010-10-27- bugfix default parameter values did not work for template functions ↵uwe.tews@googlemail.com1-0/+1
included with {include}
2010-10-25- bugfix for E_NOTICE change, array elements did not work as modifier parameteruwe.tews@googlemail.com3-828/+869
2010-10-20- bugfix for the E_NOTICE changeuwe.tews@googlemail.com2-136/+146
2010-10-19- change Smarty does no longer mask out E_NOTICE by default during template ↵uwe.tews@googlemail.com2-4/+7
processing
2010-10-13- bugfix on output buffer handling in isCached() methoduwe.tews@googlemail.com1-2/+3
2010-10-13- bugfix on template inheritance using nested eval or string resource in ↵uwe.tews@googlemail.com1-2/+6
{extends} tags
2010-10-13- bugfix removed ambiguity between ternary and stream variable in template ↵uwe.tews@googlemail.com4-974/+1009
syntax - bugfix use caching properties of template instead of smarty object when compiling child {block} - bugfix {*block}...{/block*} did throw an exception in template inheritance
2010-10-01- added {break} and {continue} tags for flow control of ↵uwe.tews@googlemail.com9-27/+288
{foreach},{section},{for} and {while} loops - change of 'string' resource. It's no longer evaluated and compiled files are now stored - new 'eval' resource which evaluates a template without saving the compiled file - change in isCached() method to allow multiple calls for the same template
2010-09-25- bugfix on some compiling modifiersuwe.tews@googlemail.com4-5/+5
2010-09-24- bugfix merge_compiled_includes flag was not restored correctly in {block} taguwe.tews@googlemail.com1-1/+1