Hello!

I have the following problem:

I have two pages userRequests.vm and vendorRequests.vm.

The first one has userRequests.vm:
#macro( requestItemActions $requestId )
        <user specific actions>
#end
#parse("includes/requestView.vm")
-----------------

And the second one vendorRequests.vm:
#macro( requestItemActions $requestId )
        <vendor specific actions>
#end
#parse("includes/requestView.vm")
------------------

The file that is included (includes/requestView.vm) contains an
interation over some items and calls the macro requestItemActions for
each item.

The problem is that the inline defined macro is somewhat cached
because after the first parse of the temlate it is remambered and in
both pages (vendorRequest.vm and userRequest.vm) is used the same
template.

Do you have any idea why it is not working?

I tried with the
velocimacro.permissions.allowInlineToOverride=true
but it still isn't working.

Thanks in advance.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to