aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-06-06 17:50:24 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-06-06 17:50:24 +0000
commit43bc7ac78f64dd081046d2f146765315ef45c339 (patch)
tree45e29b1db2033d2796b1590e4df4683941ae8907 /phpBB/posting.php
parent6ac0e7b4b343559659837b150e99cf3ff5bcf47f (diff)
downloadforums-43bc7ac78f64dd081046d2f146765315ef45c339.tar
forums-43bc7ac78f64dd081046d2f146765315ef45c339.tar.gz
forums-43bc7ac78f64dd081046d2f146765315ef45c339.tar.bz2
forums-43bc7ac78f64dd081046d2f146765315ef45c339.tar.xz
forums-43bc7ac78f64dd081046d2f146765315ef45c339.zip
Auth now returns a type allowing for more meaningful failure messa ges
git-svn-id: file:///svn/phpbb/trunk@434 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index fe14e0adaf..d998720ca4 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -11,7 +11,6 @@
*
***************************************************************************/
-
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
@@ -60,10 +59,6 @@ function prepare_message($message, $html_on, $bbcode_on, $smile_on, $bbcode_uid
//
// Start program proper
//
-
-//
-// Obtain which forum id is required
-//
if(!isset($HTTP_GET_VARS['forum']) && !isset($HTTP_POST_VARS['forum'])) // For backward compatibility
{
$forum_id = ($HTTP_GET_VARS[POST_FORUM_URL]) ? $HTTP_GET_VARS[POST_FORUM_URL] : $HTTP_POST_VARS[POST_FORUM_URL];
@@ -72,6 +67,7 @@ else
{
$forum_id = ($HTTP_GET_VARS['forum']) ? $HTTP_GET_VARS['forum'] : $HTTP_POST_VARS['forum'];
}
+
$mode = (isset($HTTP_GET_VARS['mode'])) ? $HTTP_GET_VARS['mode'] : ( (isset($HTTP_POST_VARS['mode'])) ? $HTTP_POST_VARS['mode'] : "");
//
@@ -96,22 +92,27 @@ switch($mode)
case 'newtopic':
$auth_type = AUTH_POST;
$is_auth_type = "auth_post";
+ $error_string = "post new topics";
break;
case 'reply':
$auth_type = AUTH_REPLY;
$is_auth_type = "auth_reply";
+ $error_string = "reply to topics";
break;
case 'editpost':
$auth_type = AUTH_EDIT;
$is_auth_type = "auth_edit";
+ $error_string = "edit topics";
break;
case 'delete':
$auth_type = AUTH_DELETE;
$is_auth_type = "auth_delete";
+ $error_string = "delete topics";
break;
default:
$auth_type = AUTH_POST;
$is_auth_type = "auth_post";
+ $error_string = "post new topics";
break;
}
@@ -125,7 +126,7 @@ if(!$is_auth[$is_auth_type])
//
include('includes/page_header.'.$phpEx);
- $msg = "I am sorry but you are not currently authorised to post to this forum. You could try logging on and trying again. If you are logged on then this is a private forum for which you have not been granted access.";
+ $msg = "I am sorry but you cannot $error_string in this forum, this function is restricted to " . $is_auth[$is_auth_type . "_type"] . " only.";
$template->set_filenames(array(
"reg_header" => "error_body.tpl"