It's safe to update 2.2.0b4 to 2.2.1? Or I need to install 2.2.0final first? Thanks in advance... -- --------------------------- Diego Rodrigo Neufert -webmaster --------------------------- (Magic Web Design) (email) (diego@magicwebdesign.com.br) (curitiba) (pr)
I'm trying to create a list of users' emails. There is a table called "tblUsers" and a field called "Email". I have created a sql method called "get_email(UserName)" which works fine. <dtml-in "theOTHERintranet.acl_users.getUserNames()"> <dtml-in "get_email('UserName=<dtml-var sequence-item>')"> <dtml-var Email><br> </dtml-in> </dtml-in> any ideas anyone? thanks tom
on Wednesday, September 13, 2000 tom smith wrote : ts> I'm trying to create a list of users' emails. There is a table called ts> "tblUsers" and a field called "Email". ts> I have created a sql method called "get_email(UserName)" which works fine. ts> <dtml-in "theOTHERintranet.acl_users.getUserNames()"> ts> <dtml-in "get_email('UserName=<dtml-var sequence-item>')"> .... ts> any ideas anyone? Don't nest DTML inside DTML try something like : <dtml-in "get_email('UserName=_['sequence-item']')"> -- Geir Bækholt web-developer/designer geirh@funcom.com http://www.funcom.com
participants (3)
-
Diego Rodrigo Neufert -
Geir B�kholt -
tom smith