Hello,
On 05/29/2009 10:23 PM, Juha Heinanen wrote:
this is my current list of unresolved script errors:
- tm module lacks onreply_avp_mode param. how does sr tm behave related to avp visibility?
you can remove it. IIRC, this is default behavior in SR, haven't tested, though.
this kind of if expression results in parse error:
if ([$avp(i:712) & 1]) {
how to re-write it so that it is accepted?
remove the square brackets, works directly now:
if ($avp(i:712) & 1) {
Cheers, Daniel