Completed
Pull Request — master (#2)
by
unknown
03:32
created
diff.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
                             // Check if this same and ignore some words
190 190
                             if ($english === $array['rightVersion'][$index] && !in_array($english, $ignoredROSStrings) && !in_array($english, $ignoredWineStrings))
191 191
                             {
192
-                            	echo "<b>Missing translation:</b> ". htmlspecialchars($english) ."<br>";
192
+                                echo "<b>Missing translation:</b> ". htmlspecialchars($english) ."<br>";
193 193
                                 $missing++;
194 194
                             }
195 195
                             $allStrings++;
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
                     }
203 203
                     if ($currentMissing == $missing)
204 204
                     {
205
-                    	echo "Seems OK :) Some strings was ignored by ReactOS and Wine spell files.<br>";
205
+                        echo "Seems OK :) Some strings was ignored by ReactOS and Wine spell files.<br>";
206 206
                     }
207 207
 
208 208
                     echo "<hr>";
Please login to merge, or discard this patch.
config.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -31,17 +31,17 @@
 block discarded – undo
31 31
 if (!file_exists($ROSDir))
32 32
 {
33 33
     echo "ReactOS source path <b>$ROSDir</b> does not exist!";
34
-	if (strpos($uname, "linux") !== false)
35
-	{
36
-		echo "<br><br>For <b><u>Linux users</u></b>: make sure you have set the right permission rights for both the ReactOS source code directory and the tool directory.   Use <i>chmod</i> command and set their rights to 755 for both these directories if necessary. In any case you're using XAMPP for Linux, change the user and usergroup to yours. To do so read this: <a href = 'https://askubuntu.com/a/221593'>Change XAMPP's usergroup and username (link)</a>";
37
-	}
38
-	else if (strpos($uname, "win") !== false)
39
-	{
40
-		echo "<br><br>For <b><u>Windows users</u></b>: make sure the ReactOS source code path is <b>CORRECT</b> or that it is not <b>CORRUPT</b>";
41
-	}
34
+    if (strpos($uname, "linux") !== false)
35
+    {
36
+        echo "<br><br>For <b><u>Linux users</u></b>: make sure you have set the right permission rights for both the ReactOS source code directory and the tool directory.   Use <i>chmod</i> command and set their rights to 755 for both these directories if necessary. In any case you're using XAMPP for Linux, change the user and usergroup to yours. To do so read this: <a href = 'https://askubuntu.com/a/221593'>Change XAMPP's usergroup and username (link)</a>";
37
+    }
38
+    else if (strpos($uname, "win") !== false)
39
+    {
40
+        echo "<br><br>For <b><u>Windows users</u></b>: make sure the ReactOS source code path is <b>CORRECT</b> or that it is not <b>CORRUPT</b>";
41
+    }
42 42
     exit;
43 43
 }
44 44
 
45 45
 if (substr($ROSDir, -1) !== DIRECTORY_SEPARATOR) {
46
-	$ROSDir .= DIRECTORY_SEPARATOR;
46
+    $ROSDir .= DIRECTORY_SEPARATOR;
47 47
 }
Please login to merge, or discard this patch.