aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-01-25 00:30:36 -0800
committerfriendica <info@friendica.com>2012-01-25 00:30:36 -0800
commita24a383dab03b313598c56cec5c83cbb9ca62595 (patch)
tree05d4193b4fe0d8faafcf6280bb5bd038a1fa3713
parente2d0eb4a88d3ebd92e87a3e1969f78972396dd6f (diff)
downloadvolse-hubzilla-a24a383dab03b313598c56cec5c83cbb9ca62595.tar.gz
volse-hubzilla-a24a383dab03b313598c56cec5c83cbb9ca62595.tar.bz2
volse-hubzilla-a24a383dab03b313598c56cec5c83cbb9ca62595.zip
by default allow pseudonyms
-rwxr-xr-xhtconfig.php3
-rwxr-xr-xupdate.php6
-rwxr-xr-xview/en/htconfig.tpl3
3 files changed, 10 insertions, 2 deletions
diff --git a/htconfig.php b/htconfig.php
index 89c226e9b..4698e9a94 100755
--- a/htconfig.php
+++ b/htconfig.php
@@ -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;
diff --git a/update.php b/update.php
index aac306a72..166602fb9 100755
--- a/update.php
+++ b/update.php
@@ -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`) ");
-} \ No newline at end of file
+}
+
diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl
index c535cefa6..3eb2da070 100755
--- a/view/en/htconfig.tpl
+++ b/view/en/htconfig.tpl
@@ -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;