by default allow pseudonyms
This commit is contained in:
parent
e2d0eb4a88
commit
a24a383dab
3 changed files with 10 additions and 2 deletions
|
@ -69,3 +69,6 @@ $a->config['system']['rino_encrypt'] = true;
|
|||
$a->config['system']['theme'] = 'duepuntozero';
|
||||
|
||||
|
||||
// By default allow pseudonyms
|
||||
|
||||
$a->config['system']['no_regfullname'] = true;
|
||||
|
|
|
@ -992,6 +992,8 @@ INDEX ( `stat` )
|
|||
}
|
||||
|
||||
function update_1115() {
|
||||
q("ALTER TABLE `item` ADD `moderated` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `pubmail`,
|
||||
q("ALTER TABLE `item` ADD `moderated`
|
||||
TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `pubmail`,
|
||||
ADD INDEX (`moderated`) ");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -66,3 +66,6 @@ $a->config['system']['rino_encrypt'] = true;
|
|||
|
||||
$a->config['system']['theme'] = 'duepuntozero';
|
||||
|
||||
// By default allow pseudonyms
|
||||
|
||||
$a->config['system']['no_regfullname'] = true;
|
||||
|
|
Loading…
Reference in a new issue