Home
The Toolkit for Online Communities
15889 Community Members, 0 members online, 1935 visitors today
Log In Register

Forum OpenACS Development: Re: Passing in two (array) variables to a ad_proc

OpenACS Home : Forums : OpenACS Development : Re: Passing in two (array) variables to a ad_proc : One Message

+
Posted by russell muetzelfeldt on
garry -

in TCL, variables aren't interpolated inside braces, so the $allowed in your set widget statement is taken literally instead of as a variable reference. you need to enclose the content of your set widget statement in "" quotes (which also means you'll need to \" escape all the quotes within the string).

+
Posted by garry g on
Thank you Russell for your quick reply.  I'll give it a go.