aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorThomas Willingham <beardyunixer@beardyunixer.com>2014-10-21 17:27:13 +0100
committerThomas Willingham <beardyunixer@beardyunixer.com>2014-10-21 17:27:13 +0100
commit1fb2de6d55779c853e25d38f5b93133a5414d72a (patch)
treef48667f80650e912507bacbd0cfc8739568e68a1 /include
parenta03c3d54805b087181730a84263a14e5a1ca3e96 (diff)
downloadvolse-hubzilla-1fb2de6d55779c853e25d38f5b93133a5414d72a.tar.gz
volse-hubzilla-1fb2de6d55779c853e25d38f5b93133a5414d72a.tar.bz2
volse-hubzilla-1fb2de6d55779c853e25d38f5b93133a5414d72a.zip
Typo
Diffstat (limited to 'include')
-rw-r--r--include/poller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/poller.php b/include/poller.php
index d18cb1ca6..f11618d37 100644
--- a/include/poller.php
+++ b/include/poller.php
@@ -25,7 +25,7 @@ function poller_run($argv, $argc){
if(! $interval)
$interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
- // Check for a logfile. If it exists, but is over an hour old, it's stale. Ignore it.
+ // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it.
$lockfile = 'store/[data]/poller';
if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600))) {
logger("poller: Already running");