diff options
author | Adrian Lang <lang@cosmocode.de> | 2010-02-08 15:44:26 +0100 |
---|---|---|
committer | Adrian Lang <lang@cosmocode.de> | 2010-02-08 15:46:11 +0100 |
commit | 70421c96f055e574aa6e9602492ca4b35a33b9f2 (patch) | |
tree | d7f66b6cb201a88544fece5e160e2feb9333636d /lib/exe/indexer.php | |
parent | 599e75de5d1510a4124739fb5e8c5397f5dfa69b (diff) | |
download | rpg-70421c96f055e574aa6e9602492ca4b35a33b9f2.tar.gz rpg-70421c96f055e574aa6e9602492ca4b35a33b9f2.tar.bz2 |
Correct subscribe config parameter name
Diffstat (limited to 'lib/exe/indexer.php')
-rw-r--r-- | lib/exe/indexer.php | 2 |
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; |