Hello,
After upgrading to 2.0.11 I'm getting the following error: Macro was called without parameter condition
Reverting to 2.0.10 works well.
{%- macro conditionaldate(condition, tdate, ttime, tz) %}{% if condition %} from <br/>{{ tdate }}, {{ ttime }} {{ tz }}{% endif %}{%- endmacro %}
{{ conditionaldate(count_data > 0, tdate, ttime, tz) }}
Looks like it comes from the following change: Fixed Phalcon\Mvc\View\Engine\Volt::callMacro bug. Now it's correctly calling call_user_func_array instead of call_user_func
Any ideas?
Thnx.
Wiesl