summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-08-31 16:35:03 +0200
committerMorris Jobke <hey@morrisjobke.de>2014-08-31 16:35:03 +0200
commit2e76b5cc9e9afc5c839e2d1cd86b6581cfdb719f (patch)
tree5a3113765ccaa305b312430a91280dd06bba65b4
parent4024960a0ec1dbb6a3496e24b1387c6fa260a293 (diff)
parentb7445582dc6d8adda89dc26f351d4c92748bbe2d (diff)
downloadnextcloud-server-2e76b5cc9e9afc5c839e2d1cd86b6581cfdb719f.tar.gz
nextcloud-server-2e76b5cc9e9afc5c839e2d1cd86b6581cfdb719f.zip
Merge pull request #10778 from owncloud/eof-cron
add proper End of Line character
-rw-r--r--cron.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/cron.php b/cron.php
index c48f17ed095..e77cc885aba 100644
--- a/cron.php
+++ b/cron.php
@@ -100,7 +100,7 @@ try {
if (file_exists(TemporaryCronClass::$lockfile)) {
TemporaryCronClass::$keeplock = true;
TemporaryCronClass::$sent = true;
- echo "Another instance of cron.php is still running!";
+ echo "Another instance of cron.php is still running!" . PHP_EOL;
exit(1);
}