On 10 May 2000, Jochen Lillich wrote:

> I'd like to create a discussion forum with Midgard. 
> 
> How do I manage the owner information of articles and replies so that
> some ppl can create articles but all users are able to reply?

The built-in access control doesn't offer this out of the box, but you
could do (strictly pseudo-code):

if ($create && mgd_is_member(<ID of creator group>)) {
  /* create new article */
}

if ($reply) {
  /* reply to article */
}

Emile


--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]

Reply via email to