diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-08-31 16:35:03 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-31 16:35:03 +0200 |
commit | 2e76b5cc9e9afc5c839e2d1cd86b6581cfdb719f (patch) | |
tree | 5a3113765ccaa305b312430a91280dd06bba65b4 | |
parent | 4024960a0ec1dbb6a3496e24b1387c6fa260a293 (diff) | |
parent | b7445582dc6d8adda89dc26f351d4c92748bbe2d (diff) | |
download | nextcloud-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.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |