1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-18 22:58:10 +01:00

another quick fix for demo purposes

git-svn-id: file:///svn/phpbb/trunk@3829 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-04-13 21:01:14 +00:00
parent d4ee356087
commit c51afc3b08

View File

@ -783,7 +783,7 @@ if (in_array($submit, array('options', 'presetsave', 'presetdel', 'update')) ||
$view_options .= '<option value="-1">Select view</option>';
$view_options .= (!empty($submode) && $mode != $submode) ? '<option value="' . $mode . '">' . $user->lang['ACL_VIEW_' . strtoupper($mode)] . '</option>' : '';
$view_ary = array(
'admin' => array('forum' => 'a_auth', 'mod' => 'a_modauth', 'supermod' => 'a_modauth'),
'admin' => array('forum' => 'a_auth', 'mod' => 'a_authmods', 'supermod' => 'a_authmods'),
'supermod' => array('forum' => 'a_auth'),
'mod' => array('forum' => 'a_auth')
);