Passed
Push — master ( 6fae8e...4198df )
by Kevin
01:15 queued 23s
created
html/user/get_project_config.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,11 +81,11 @@  discard block
 block discarded – undo
81 81
 }
82 82
 
83 83
 if ($disable_account_creation || defined('INVITE_CODES')) {
84
-	echo "    <account_creation_disabled/>\n";
84
+    echo "    <account_creation_disabled/>\n";
85 85
 }
86 86
 
87 87
 if (defined('INVITE_CODES')) {
88
-	echo "    <invite_code_required/>\n";
88
+    echo "    <invite_code_required/>\n";
89 89
 }
90 90
 
91 91
 echo "    <min_passwd_length>$min_passwd_length</min_passwd_length>\n";
@@ -107,10 +107,10 @@  discard block
 block discarded – undo
107 107
 // project has not defined the constant TERMSOFUSE_FILE, then look for
108 108
 // the terms_of_use.txt file in the project base directory.
109 109
 if (defined('TERMSOFUSE_FILE')) {
110
-  $tou_file = TERMSOFUSE_FILE;
110
+    $tou_file = TERMSOFUSE_FILE;
111 111
 }
112 112
 else {
113
-  $tou_file =  "../../terms_of_use.txt";
113
+    $tou_file =  "../../terms_of_use.txt";
114 114
 }
115 115
 if (file_exists($tou_file)) {
116 116
     $terms_of_use = trim(file_get_contents($tou_file));
Please login to merge, or discard this patch.