diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-06 17:50:24 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-06 17:50:24 +0000 |
commit | 43bc7ac78f64dd081046d2f146765315ef45c339 (patch) | |
tree | 45e29b1db2033d2796b1590e4df4683941ae8907 /phpBB/viewtopic.php | |
parent | 6ac0e7b4b343559659837b150e99cf3ff5bcf47f (diff) | |
download | forums-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/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index a35dafb6e8..632e56c552 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -234,7 +234,7 @@ if(!$is_auth['auth_view'] || !$is_auth['auth_view']) // include('includes/page_header.'.$phpEx); - $msg = "I am sorry but you are not currently authorised to read 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 only " . $is_auth['auth_read_type'] . " can read this topic."; $template->set_filenames(array( "reg_header" => "error_body.tpl" |