From: Hypolite Petovan Date: Tue, 27 Nov 2018 07:46:37 +0000 (-0500) Subject: Add constant case to config migration tables X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=60aedb1df9185bf1f2445662503ae1574b1ef368;p=friendica.git Add constant case to config migration tables - Remove triple points in config example --- diff --git a/doc/Config.md b/doc/Config.md index f85ceb4985..a187331dd6 100644 --- a/doc/Config.md +++ b/doc/Config.md @@ -136,6 +136,16 @@ $a->config["key"] = "value"; ], + +
+$a->config['register_policy'] = REGISTER_CLOSED;
+
+
+'config' => [
+    'register_policty' => REGISTER_CLOSED,
+],
+
+
 $a->path = "value";
@@ -225,6 +235,17 @@ key = value
 ],
 
+ +
+[config]
+register_policty = REGISTER_CLOSED
+
+
+'config' => [
+    'register_policty' => REGISTER_CLOSED,
+],
+
+
 [section]
@@ -250,7 +271,6 @@ If you need to specify a port to access the database, you can do so by appending
 
     'database' => [
         'hostname' => 'your.mysqlhost.com:123456',
-        ...
     ]
 
 If all of the following environment variables are set, Friendica will use them instead of the previously configured variables for the db: