update changelog

This commit is contained in:
mohrt
2001-02-20 21:58:09 +00:00
parent 14ee025b2c
commit 6f266d84a9
2 changed files with 11 additions and 2 deletions

10
FAQ
View File

@@ -95,3 +95,13 @@ A: All conditional qualifiers must be separated by spaces. This syntax will not
The reason for this is syntax ambiguity. Both "==" and "eq" are equivalent The reason for this is syntax ambiguity. Both "==" and "eq" are equivalent
in the template parser, so something like {if $nameeq"Wilma"} wouldn't be in the template parser, so something like {if $nameeq"Wilma"} wouldn't be
parsable by the tokenizer. parsable by the tokenizer.
Q: I'm changing my php code and/or templates, and my results are not getting
updated.
A: This may be the result of your compile or cache settings. If you are
changing your php code, your templates will not necessarily get recompiled
to reflect the changes. Use $force_compile during develpment to avoid these
situations. Also turn off caching during development when you aren't
specifically testing it. You can also remove everything from your
compile_dir and cache_dir and reload the page to be sure everything gets
regenerated.

3
NEWS
View File

@@ -1,5 +1,4 @@
- fix php tag escapement logic (Monte) - removed $allow_php, added $php_handler logic (Monte)
- added header function (Monte)
- added file locking to prevent reader/writer problem. (Andrei) - added file locking to prevent reader/writer problem. (Andrei)
- made Smarty catch unimplemented modifiers and custom functions and output - made Smarty catch unimplemented modifiers and custom functions and output
error messages during compilation instead of failing during run time. error messages during compilation instead of failing during run time.