It is a bug ?

Charles-Mourad Jaber Charles-Mourad.Jaber at businessobjects.com
Mon Jul 23 03:18:10 PDT 2001


Thanks it's working now perfectly...

-----Original Message-----
From: Michel Benevento [mailto:beno at xs4all.nl]
Sent: vendredi 20 juillet 2001 18:03
To: Frontier-Users
Subject: Re: It is a bug ?


>on setEditors( isMngt , EdList, tableAdr ) {
>	table.inGuestDatabase(@[tableAdr]);
>	if isMngt {
>		tableAdr^.["#newsSite"].sysopMail =  EdList}
>	else {
>		tableAdr^.["#newsSite"].contributingEditors  =  EdList}}
>
>EdList contain a list as a String like : {"editor1 at mysite.com",
>"editor1 at mysite.com", "editor1 at mysite.com", "editor1 at mysite.com"}
>In the case of the contributing editor, it work well. But when I set the ME
>list, it didn't work because frontier didn't recognize it as a list !!!..
>Somebody can hepl ?

Not sure if I understand this, but I would try to convert to lists:

on setEditors( isMngt , EdList, tableAdr ) {
	table.inGuestDatabase(@[tableAdr]);
	if isMngt {
		tableAdr^.["#newsSite"].sysopMail = list (EdList)}
	else {
		tableAdr^.["#newsSite"].contributingEditors  =  list
(EdList)}}

HTH,
Michel Benevento





More information about the Frontier-Users mailing list