by default allow pseudonyms

This commit is contained in:
friendica 2012-01-25 00:30:36 -08:00
parent e2d0eb4a88
commit a24a383dab
3 changed files with 10 additions and 2 deletions

View File

@ -69,3 +69,6 @@ $a->config['system']['rino_encrypt'] = true;
$a->config['system']['theme'] = 'duepuntozero'; $a->config['system']['theme'] = 'duepuntozero';
// By default allow pseudonyms
$a->config['system']['no_regfullname'] = true;

View File

@ -992,6 +992,8 @@ INDEX ( `stat` )
} }
function update_1115() { 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`) "); ADD INDEX (`moderated`) ");
} }

View File

@ -66,3 +66,6 @@ $a->config['system']['rino_encrypt'] = true;
$a->config['system']['theme'] = 'duepuntozero'; $a->config['system']['theme'] = 'duepuntozero';
// By default allow pseudonyms
$a->config['system']['no_regfullname'] = true;