aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-07-28 19:41:48 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-07-28 19:41:48 +0000
commit1cf0a19dd15f5f60929d34f92a33313b7336717e (patch)
treed697a7ee700b4c60969520ba813e6f311d1b8f78 /phpBB/admin
parent655a057e903a4b6cf2489e2131f793d5d8870a37 (diff)
downloadforums-1cf0a19dd15f5f60929d34f92a33313b7336717e.tar
forums-1cf0a19dd15f5f60929d34f92a33313b7336717e.tar.gz
forums-1cf0a19dd15f5f60929d34f92a33313b7336717e.tar.bz2
forums-1cf0a19dd15f5f60929d34f92a33313b7336717e.tar.xz
forums-1cf0a19dd15f5f60929d34f92a33313b7336717e.zip
Missing setting of checked for disabled user reg
git-svn-id: file:///svn/phpbb/trunk@2777 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin')
-rw-r--r--phpBB/admin/admin_board.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/admin/admin_board.php b/phpBB/admin/admin_board.php
index e8153cae5e..52216b10dd 100644
--- a/phpBB/admin/admin_board.php
+++ b/phpBB/admin/admin_board.php
@@ -306,6 +306,7 @@ switch ( $mode )
$activation_none = ( $new['require_activation'] == USER_ACTIVATION_NONE ) ? 'checked="checked"' : '';
$activation_user = ( $new['require_activation'] == USER_ACTIVATION_SELF ) ? 'checked="checked"' : '';
$activation_admin = ( $new['require_activation'] == USER_ACTIVATION_ADMIN ) ? 'checked="checked"' : '';
+ $activation_disable = ( $new['require_activation'] == USER_ACTIVATION_DISABLE ) ? 'checked="checked"' : '';
$gzip_yes = ( $new['gzip_compress'] ) ? 'checked="checked"' : '';
$gzip_no = ( !$new['gzip_compress'] ) ? 'checked="checked"' : '';