我已安裝的mod:
Topic Cost Modification;論壇銀行;整合式top5和cash mod。
我用的風格是:Macinscott2
我用的phpBB版本是2.0.11

而我現在的includes/auth.php 內的55~65行內容是以下:
代碼: 選擇全部
switch( $type )
{
case AUTH_ALL:
$a_sql = 'a.auth_view, a.auth_read, a.auth_post, a.auth_reply, a.auth_edit, a.auth_delete, a.auth_sticky, a.auth_announce, a.auth_vote, a.auth_pollcreate, a.auth_globalannounce';
$auth_fields = array('auth_view', 'auth_read', 'auth_post', 'auth_reply', 'auth_edit', 'auth_delete', 'auth_sticky', 'auth_announce', 'auth_vote', 'auth_pollcreate', 'auth_globalannounce');
break;
case AUTH_VIEW:
$a_sql = 'a.auth_view';
$auth_fields = array('auth_view');
break;代碼: 選擇全部
#-----[ OPEN ]------------------------------------------------
#
includes/auth.php
#
#-----[ FIND ]------------------------------------------------
#
case AUTH_ALL:
$a_sql = '
#
#-----[ IN-LINE FIND ]----------------------------------------
#
';
#
#-----[ IN-LINE BEFORE, ADD ]---------------------------------
#
, a.auth_globalannounce
#
#-----[ FIND ]------------------------------------------------
#
$auth_fields = array(
#
#-----[ IN-LINE FIND ]----------------------------------------
#
);
#
#-----[ IN-LINE BEFORE, ADD ]---------------------------------
#
, 'auth_globalannounce'
#
#-----[ FIND ]------------------------------------------------
#
default:
break;
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
// Start add - Global announcement MOD
case AUTH_GLOBALANNOUNCE:
$a_sql = 'a.auth_globalannounce';
$auth_fields = array('auth_globalannounce');
break;
// End add - Global announcement MOD
#請問有高手懂我現在錯在哪嗎?
