[Zope] Fetching the title of object whose id is passed in query string

Danny William Adair danny@adair.net
Thu, 29 Nov 2001 16:46:26 +1300


On Thursday 29 November 2001 16:44, Danny William Adair wrote:
> <dtml-var "imgs[imgID].title_or_id">

Sorry:

<dtml-var "imgs[imgID].title_or_id()">

With "title" that would have worked since it's a property, but "title_or_id" 
is a function call, so you need the parentheses.

Danny