aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-08-05 13:01:03 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-08-05 13:01:03 +0000
commitf3a2c096e7f502e877ada6924d1fedffde59d431 (patch)
tree4721bc93e77da73cf0469b9be4b3fbacc15b6d03 /phpBB/includes/functions_posting.php
parent914687075da7769583e2752701121deee61ff525 (diff)
downloadforums-f3a2c096e7f502e877ada6924d1fedffde59d431.tar
forums-f3a2c096e7f502e877ada6924d1fedffde59d431.tar.gz
forums-f3a2c096e7f502e877ada6924d1fedffde59d431.tar.bz2
forums-f3a2c096e7f502e877ada6924d1fedffde59d431.tar.xz
forums-f3a2c096e7f502e877ada6924d1fedffde59d431.zip
submit_post() now accepts force_approved_state key passed to $data to indicate new posts being approved (true) or unapproved (false).
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9927 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 61741ceb81..0991035c32 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1674,14 +1674,22 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
}
// This variable indicates if the user is able to post or put into the queue - it is used later for all code decisions regarding approval
+ // The variable name should be $post_approved, because it indicates if the post is approved or not
$post_approval = 1;
// Check the permissions for post approval. Moderators are not affected.
if (!$auth->acl_get('f_noapprove', $data['forum_id']) && !$auth->acl_get('m_approve', $data['forum_id']))
{
+ // Post not approved, but in queue
$post_approval = 0;
}
+ // Mods are able to force approved/unapproved posts. True means the post is approved, false the post is unapproved
+ if ($data['force_approved_state'])
+ {
+ $post_approval = ($data['force_approved_state']) ? 1 : 0;
+ }
+
// Start the transaction here
$db->sql_transaction('begin');