Skip to content
Snippets Groups Projects
Commit 70421c96 authored by Adrian Lang's avatar Adrian Lang
Browse files

Correct subscribe config parameter name

parent 599e75de
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment