summaryrefslogtreecommitdiff
path: root/change_log.txt
AgeCommit message (Collapse)AuthorFilesLines
2011-10-10- bugfix Smarty_CacheResource_mysql example was missing strtotime() callsrodneyrehm1-0/+1
2011-10-10- bugfix <?xml> tag did create wrong output when caching enabled and the tag ↵uwe.tews@googlemail.com1-0/+1
was in included subtemplate
2011-10-10- bugfix variable name typo in {html_options} and {html_checkboxes} (Issue #54)rodneyrehm1-0/+4
2011-10-07- bugfix parent pointer was not set when fetch() for other template was ↵uwe.tews@googlemail.com1-0/+1
called on template object
2011-10-07- improvement removed some unnecessary count()srodneyrehm1-0/+1
2011-10-07- improvement html_checkboxes and html_radios to accept null- and object ↵rodneyrehm1-0/+1
values, and label_ids attribute
2011-10-07- bugfix html_options plugin did not handle object values properly (Issue ↵rodneyrehm1-0/+1
#49, Forum Topic 20049)
2011-10-07- improvement testInstall() now showing resolved paths and checking the ↵rodneyrehm1-0/+1
include_path if necessary
2011-10-07- bugfix testInstall() would not show path to internal plugins_dir (Forum ↵rodneyrehm1-1/+4
Post 74627)
2011-10-07- improvement removed html comments from {mailto} (Forum Topic 20092)rodneyrehm1-0/+1
2011-10-06- bugfix start_year and end_year of {html_select_date} did not use current ↵rodneyrehm1-0/+1
year as offset base (Issue #53)
2011-10-06- bugfix switch lexer internals depending on mbstring.func_overloaduwe.tews@googlemail.com1-0/+3
2011-10-05- bugfix html_options plugin did not handle null- and object values properly ↵rodneyrehm1-0/+1
(Issue #49, Forum Topic 20049)
2011-10-05- bugfix nofilter tag option did not disable default modifieruwe.tews@googlemail.com1-0/+1
2011-10-05- add environment configuration issue with mbstring.func_overload Smarty ↵rodneyrehm1-0/+1
cannot compensate for (Issue #45)
2011-10-05- bugfix of problem introduced with r4342 by replacing strlen() with isset()rodneyrehm1-0/+3
2011-10-04- bugfix has_nocache_code flag was not reset before compilationuwe.tews@googlemail.com1-0/+1
2011-10-04- bugfix output filter should not run on individually cached subtemplatesuwe.tews@googlemail.com1-0/+2
- add unloadFilter() method
2011-10-04- bugfix of problem introduced with r4342 on math plugin uwe.tews@googlemail.com1-0/+1
2011-10-04- bugfix assign() in plugins called in subtemplates did change value also in ↵uwe.tews@googlemail.com1-0/+3
parent template
2011-10-03update changelogmonte.ohrt1-0/+1
2011-10-03- improvement add internal $joined_template_dir property instead computing ↵uwe.tews@googlemail.com1-0/+3
it on the fly several times
2011-10-01- improvement Smarty_Internal_Utility::clearCompiledTemplate() removed ↵rodneyrehm1-0/+1
redundant strlen()s
2011-10-01- improvement replaced some strlen($foo) > 3 calls by isset($foo[3])rodneyrehm1-0/+1
2011-10-01- improvement replaced most in_array() calls by more efficient isset() on ↵rodneyrehm1-0/+3
array_flip()ed haystacks - added notes on possible performance optimization/problem with Smarty_Security
2011-09-29- improvement of Smarty_Internal_Config::loadConfigVars() dropped the ↵rodneyrehm1-0/+3
in_array for index look up
2011-09-28- bugfix on template functions called nocache calling other template functionsuwe.tews@googlemail.com1-0/+3
2011-09-27- bugfix wrong resource could be used on compile check of custom resourceuwe.tews@googlemail.com1-0/+1
2011-09-27- bugfix smarty_make_timestamp() failed to process DateTime objects properlyrodneyrehm1-0/+1
2011-09-27- bugfix variable property did not work on objects variable in templateuwe.tews@googlemail.com1-0/+1
2011-09-27- bugfix remove race condition when a custom resource did change timestamp ↵uwe.tews@googlemail.com1-0/+1
during compilation
2011-09-27- added chaining to Smarty_Internal_Data so ↵rodneyrehm1-0/+1
$smarty->assign('a',1)->assign('b',2); is possible now
2011-09-27- bugfix possible warning "attempt to modify property of non-object" in ↵rodneyrehm1-0/+3
{section} (issue #34)
2011-09-26- bugfix repeated calls to same subtemplate did not make use of cached ↵uwe.tews@googlemail.com1-0/+3
template object
2011-09-24- improvment better error message for undefined templates at {include}uwe.tews@googlemail.com1-0/+1
2011-09-24- added compile_dir and cache_dir to list of muted directoriesrodneyrehm1-0/+1
2011-09-24- removed internal muteExpectedErrors() calls in favor of having the ↵rodneyrehm1-1/+4
implementor call this once from his application - optimized muteExpectedErrors() to pass errors to the latest registered error handler, if appliccable error muting is now a global thing. this was done because of the overhead set_error_handler imposes and the fact, that only a few people really "need" this. The decision was made by uwe.tews and rodneyrehm. (just in case anyone asks…)
2011-09-23- bugfix error muting was not implemented for cache lockinguwe.tews@googlemail.com1-0/+1
2011-09-23- remove unused propertiesuwe.tews@googlemail.com1-0/+7
- optimization use real function instead anonymous function for preg_replace_callback - bugfix a relative {include} in child template blocks failed - bugfix direct setting of $template_dir, $config_dir, $plugins_dir in __construct() of an extended Smarty class created problems
2011-09-23update headermonte.ohrt1-1/+2
2011-09-22- bugfix debug.tpl did not display correctly when it was compiled with ↵uwe.tews@googlemail.com1-0/+2
escape_html = true
2011-09-22- bugfix {foreachelse} does fail if {section} was nested inside {foreach}uwe.tews@googlemail.com1-0/+3
2011-09-21- reverted ./ and ../ handling in fetch() and display() - they're allowed againrodneyrehm1-0/+1
2011-09-21optimized autoloaderrodneyrehm1-0/+1
2011-09-21- added $error_muting to suppress error messages even for badly implemented ↵rodneyrehm1-1/+1
error_handlers - reverted r4301
2011-09-21- bugfix use 3.0 version of smarty_internal_write_file.php because of ↵uwe.tews@googlemail.com1-0/+1
problems with custom error handlers
2011-09-21- bugfix look for mixed case plugin file names as in 3.0 if not found try ↵uwe.tews@googlemail.com1-0/+3
all lowercase
2011-09-20- bugfix {assign} with scope root and global did not work in all casesuwe.tews@googlemail.com1-0/+1
2011-09-20- bugfix {include} did not work inside nested {block} tagsuwe.tews@googlemail.com1-0/+1
2011-09-20- bugfix relative paths in $template_dir broke relative path resolving in ↵rodneyrehm1-0/+1
{include "../foo.tpl"}