Fix new line symbol on Windows systems in dbinstall.php (#13)
authorAndréas Lundgren <Adevade@users.noreply.github.com>
Wed, 14 Sep 2016 19:22:43 +0000 (21:22 +0200)
committeranuko <support@anuko.com>
Wed, 14 Sep 2016 19:22:43 +0000 (19:22 +0000)
dbinstall.php

index 46fc0fc..0d32ab8 100755 (executable)
@@ -61,7 +61,7 @@ if ($request->isGet()) {
     // spit white space before output in some situations such as in PDF reports.
     $file = fopen(APP_DIR."/WEB-INF/config.php", "r");
     $line = fgets($file);
-    if (strcmp("<?php\n", $line) !== 0) {
+    if (strcmp("<?php".PHP_EOL, $line) !== 0) {
       echo('<font color="red">Error: WEB-INF/config.php file does not start with PHP opening tag.</font><br>');
     }
     fclose($file);