Fixes issue where single changes were not displaying.

Fixes #57
This commit is contained in:
Starbeamrainbowlabs 2016-04-06 15:24:49 +01:00
parent 995ef39901
commit 9dbb3b5dc0
3 changed files with 9 additions and 1 deletions

View File

@ -1763,6 +1763,10 @@ function render_recent_changes($recent_changes)
$content .= "$next_entry\n";
}
else
{
$content .= implode("\n", $rchange_results);
}
$last_time = date("dmY", $rchange->timestamp);
}

View File

@ -41,7 +41,7 @@
"author": "Starbeamrainbowlabs",
"description": "Adds recent changes. Access through the 'recent-changes' action.",
"id": "feature-recent-changes",
"lastupdate": 1459774466,
"lastupdate": 1459952614,
"optional": false
},
{

View File

@ -167,6 +167,10 @@ function render_recent_changes($recent_changes)
$content .= "$next_entry\n";
}
else
{
$content .= implode("\n", $rchange_results);
}
$last_time = date("dmY", $rchange->timestamp);
}