From 70421c96f055e574aa6e9602492ca4b35a33b9f2 Mon Sep 17 00:00:00 2001
From: Adrian Lang <lang@cosmocode.de>
Date: Mon, 8 Feb 2010 15:44:26 +0100
Subject: [PATCH] Correct subscribe config parameter name

---
 lib/exe/indexer.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
-- 
GitLab