1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-05 12:39:15 +00:00

add some CRs to update daemon

This commit is contained in:
Andrew Dolgov
2006-08-20 11:19:10 +01:00
parent 7c620da8e1
commit 69ff793a6d

View File

@@ -16,7 +16,7 @@
require_once "config.php";
if (!ENABLE_UPDATE_DAEMON) {
die("Please enable option ENABLE_UPDATE_DAEMON in config.php");
die("Please enable option ENABLE_UPDATE_DAEMON in config.php\n");
}
require_once "db.php";
@@ -35,7 +35,7 @@
if (!$lock_handle) {
die("error: Can't create lockfile ($lock_filename). ".
"Maybe another daemon is already running.");
"Maybe another daemon is already running.\n");
}
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);