diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-10-26 12:32:09 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-10-26 12:32:09 +0000 |
commit | 6d0738ff22d4ed9cbb1180b54427a57a4383d0c2 (patch) | |
tree | 202c9a4264422ab57cc182ed0bd9ce09f8b784c8 /phpBB | |
parent | 2b8cb26e6b6b58217b993dff5fb347eaa4708c7f (diff) | |
download | forums-6d0738ff22d4ed9cbb1180b54427a57a4383d0c2.tar forums-6d0738ff22d4ed9cbb1180b54427a57a4383d0c2.tar.gz forums-6d0738ff22d4ed9cbb1180b54427a57a4383d0c2.tar.bz2 forums-6d0738ff22d4ed9cbb1180b54427a57a4383d0c2.tar.xz forums-6d0738ff22d4ed9cbb1180b54427a57a4383d0c2.zip |
Cache file -> needs to have appropriate write permissions set on server
git-svn-id: file:///svn/phpbb/trunk@2968 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/config_cache.php | 73 |
1 files changed, 5 insertions, 68 deletions
diff --git a/phpBB/config_cache.php b/phpBB/config_cache.php index 0bb9c07e26..3d34b3d0cc 100644 --- a/phpBB/config_cache.php +++ b/phpBB/config_cache.php @@ -1,72 +1,9 @@ <?php -$acl_options = array( - 'global' => array( - 'a_' => 0, - 'a_auth' => 1, - 'a_backup' => 2, - 'a_ban' => 3, - 'a_clearlogs' => 4, - 'a_email' => 5, - 'a_forum' => 6, - 'a_general' => 7, - 'a_group' => 8, - 'a_post' => 9, - 'a_styles' => 10, - 'a_user' => 11, - 'm_' => 12, - 'm_approve' => 13, - 'm_auth' => 14, - 'm_delete' => 15, - 'm_edit' => 16, - 'm_lock' => 17, - 'm_merge' => 18, - 'm_move' => 19, - 'm_split' => 20, - 'm_unrate' => 21, - 'u_' => 22, - 'u_avatar' => 23, - 'u_sig' => 24, - 'u_pm' => 25, - 'u_email' => 26, - ), - 'local' => array( - 'f_' => 0, - 'f_announce' => 1, - 'f_attach' => 2, - 'f_bbcode' => 3, - 'f_delete' => 4, - 'f_download' => 5, - 'f_edit' => 6, - 'f_email' => 7, - 'f_flash' => 8, - 'f_html' => 9, - 'f_ignoreflood' => 10, - 'f_ignorequeue' => 11, - 'f_img' => 12, - 'f_list' => 13, - 'f_poll' => 14, - 'f_post' => 15, - 'f_print' => 16, - 'f_rate' => 17, - 'f_read' => 18, - 'f_reply' => 19, - 'f_search' => 20, - 'f_sigs' => 21, - 'f_smilies' => 22, - 'f_sticky' => 23, - 'f_vote' => 24, - 'm_' => 25, - 'm_approve' => 26, - 'm_auth' => 27, - 'm_delete' => 28, - 'm_edit' => 29, - 'm_lock' => 30, - 'm_merge' => 31, - 'm_move' => 32, - 'm_split' => 33, - 'm_unrate' => 34, - ), -); +// phpBB cache file - DO NOT change anything in here by hand! + +$board_config = array(); + +$acl_options = array(); ?>
\ No newline at end of file |