Name
mgd_delete_article -- Delete an article
Synopsis
bool mgd_delete_article
(int id);
Description
Deletes the article with id id. The user must be
in the same group as the owner of the article.
Returns true if successfull. Returns false on failure.
Example
<?php
mgd_delete_article(123); # This will delete article with id 123.
?>