-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.5
-
Component/s: Documentation
-
Labels:None
VTL Reference include include directive's explanation is wrong.
Current explanation is
#include( arg[, arg2, ... argn] )
- arg - Refers to a valid file under TEMPLATE_ROOT.
Examples:
- String: #include( "disclaimer.txt", "opinion.txt" )
- Variable: #include( $foo, $bar )
but #include directive does not allow comma-deliminated expression. So this should describe as follows,
#include( arg[ arg2 ... argn] )
- arg - Refers to a valid file under TEMPLATE_ROOT.
Examples:
- String: #include( "disclaimer.txt" "opinion.txt" )
- Variable: #include( $foo $bar )