projects
/
timetracker.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
466c782
)
Fix new line symbol on Windows systems in dbinstall.php (#13)
author
Andréas Lundgren
<Adevade@users.noreply.github.com>
Wed, 14 Sep 2016 19:22:43 +0000
(21:22 +0200)
committer
anuko
<support@anuko.com>
Wed, 14 Sep 2016 19:22:43 +0000
(19:22 +0000)
dbinstall.php
patch
|
blob
|
history
diff --git
a/dbinstall.php
b/dbinstall.php
index
46fc0fc
..
0d32ab8
100755
(executable)
--- a/
dbinstall.php
+++ b/
dbinstall.php
@@
-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);