Actually... since my board/article feature is new... i enabled an auto approve by removing the submit article button and allowing for all articles to be submitted as approved "NON DRAFT"
Just look for the following code in articles.php
PHP Code:
'$articles_articleid', '$categoryid', '$title', '$summary','$author', '$postedby', '".TIMENOW."', '$content', '1', '0', '1'
And substitute it with this...
PHP Code:
'$articles_articleid', '$categoryid', '$title', '$summary','$author', '$postedby', '".TIMENOW."', '$content', '0', '0', '1'
This will insert article not as a draft... and just my moderators have the submit url... cheap fix but it works...
DISCLAIMER>>>> I did a quick review and it doesn't look like there are any dependencies for the DRAFT value in the ARTICLES_ARTICLE table...