]> git.mxchange.org Git - friendica-addons.git/commitdiff
Public Server: indented the example options in the README
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 20 Dec 2013 08:44:51 +0000 (09:44 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 20 Dec 2013 08:44:51 +0000 (09:44 +0100)
public_server.tgz
public_server/README.md

index ec9c0177f7e926dfdd3ea96f763bf0469f80cd31..ad51b9a3b5afbd1d3f983f1138046c620900343e 100755 (executable)
Binary files a/public_server.tgz and b/public_server.tgz differ
index 44b29f8e595bd37a41f1eb4f5edb97d417dc6fe2..d323ff0f3fdbd3ee87516f3a0d7b266cd938333a 100644 (file)
@@ -7,17 +7,17 @@ test bed with reduced data retention.
 
 This is a modified version of the testdrive plugin, DO NOT ACTIVATE AT THE SAME TIME AS THE TESTDRIVE PLUGIN.
 
-//When an account is created on the site, it is given a hard expiration date of 
-$a->config['public_server']['expiredays'] = 30;
-//Set the default days for posts to expire here
-$a->config['public_server']['expireposts'] = 30;
-//Remove users who have never logged in after nologin days
-$a->config['public_server']['nologin'] = 30;
-//Remove users who last logged in over flagusers days ago
-$a->config['public_server']['flagusers'] = 146;
-//For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire
-$a->config['public_server']['flagposts'] = 90;
-$a->config['public_server']['flagpostsexpire'] = 146;
+    //When an account is created on the site, it is given a hard expiration date of 
+    $a->config['public_server']['expiredays'] = 30;
+    //Set the default days for posts to expire here
+    $a->config['public_server']['expireposts'] = 30;
+    //Remove users who have never logged in after nologin days
+    $a->config['public_server']['nologin'] = 30;
+    //Remove users who last logged in over flagusers days ago
+    $a->config['public_server']['flagusers'] = 146;
+    //For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire
+    $a->config['public_server']['flagposts'] = 90;
+    $a->config['public_server']['flagpostsexpire'] = 146;
 
 Set these in your .htconfig.php file. By default nothing is defined in case the plugin is activated accidentally. 
 They can be ommitted or set to 0 to disable each option.