The above error was triggered by this syntax. Is it not ok?
layout_dir = layout ? "${base}$layout" : $base;
It generates the error when layout is undefined or has a zero length.
This generates the error:
layout = '';
layout_dir = layout ? "${base}$layout" : $base;
This doesn't:
layout = 'foo';
layout_dir = layout ? "${base}$layout" : $base;
--
Bill Moseley
[EMAIL PROTECTED]
_______________________________________________
templates mailing list
[email protected]
http://lists.template-toolkit.org/mailman/listinfo/templates