mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Missing setting of checked for disabled user reg
git-svn-id: file:///svn/phpbb/trunk@2777 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
655a057e90
commit
1cf0a19dd1
1 changed files with 1 additions and 0 deletions
|
@ -306,6 +306,7 @@ switch ( $mode )
|
||||||
$activation_none = ( $new['require_activation'] == USER_ACTIVATION_NONE ) ? 'checked="checked"' : '';
|
$activation_none = ( $new['require_activation'] == USER_ACTIVATION_NONE ) ? 'checked="checked"' : '';
|
||||||
$activation_user = ( $new['require_activation'] == USER_ACTIVATION_SELF ) ? 'checked="checked"' : '';
|
$activation_user = ( $new['require_activation'] == USER_ACTIVATION_SELF ) ? 'checked="checked"' : '';
|
||||||
$activation_admin = ( $new['require_activation'] == USER_ACTIVATION_ADMIN ) ? '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_yes = ( $new['gzip_compress'] ) ? 'checked="checked"' : '';
|
||||||
$gzip_no = ( !$new['gzip_compress'] ) ? 'checked="checked"' : '';
|
$gzip_no = ( !$new['gzip_compress'] ) ? 'checked="checked"' : '';
|
||||||
|
|
Loading…
Add table
Reference in a new issue