is this a bug?<package name="x" extends="json-default">
        <action name="t" method="doit">
            <result type="json">
                <param name="includeProperties">b</param>
            </result>
        </action>
</package>in the action: Integer[] b = new Integer[]Unknown macro: {1,2,3,4} 
;  and have get,set methods.when i config result like this:<result type="json">
   <param name="includeProperties">b</param>
</result>this output is: Unknown macro: {"b"} 
this "b" is empty!!when i config result like this:<result type="json">
   <param name="root">b</param>
</result>this output is: [1,2,3,4]this is the right data.if i don't config any param form the resutl tag. every variable Will correctly output.so,,,, it seems somthing wrong with the includeProperties tag.how should i do?