It is a bug ?

Michel Benevento beno at xs4all.nl
Fri Jul 20 09:02:41 PDT 2001


>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