summaryrefslogtreecommitdiff
path: root/lib/exe
diff options
context:
space:
mode:
authorAdrian Lang <lang@cosmocode.de>2010-02-08 15:44:26 +0100
committerAdrian Lang <lang@cosmocode.de>2010-02-08 15:46:11 +0100
commit70421c96f055e574aa6e9602492ca4b35a33b9f2 (patch)
treed7f66b6cb201a88544fece5e160e2feb9333636d /lib/exe
parent599e75de5d1510a4124739fb5e8c5397f5dfa69b (diff)
downloadrpg-70421c96f055e574aa6e9602492ca4b35a33b9f2.tar.gz
rpg-70421c96f055e574aa6e9602492ca4b35a33b9f2.tar.bz2
Correct subscribe config parameter name
Diffstat (limited to 'lib/exe')
-rw-r--r--lib/exe/indexer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/indexer.php b/lib/exe/indexer.php
index 35aa1beef..821163473 100644
--- a/lib/exe/indexer.php
+++ b/lib/exe/indexer.php
@@ -364,7 +364,7 @@ function sendDigest() {
foreach($users as $data) {
list($user, $style, $lastupdate) = $data;
$lastupdate = (int) $lastupdate;
- if ($lastupdate + $conf['subscribe_interval'] > time()) {
+ if ($lastupdate + $conf['subscribe_time'] > time()) {
// Less than the configured time period passed since last
// update.
continue;