diff --git a/build/index.php b/build/index.php index 43b5e28..625e052 100644 --- a/build/index.php +++ b/build/index.php @@ -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); } diff --git a/module_index.json b/module_index.json index 74ff638..3a5c587 100644 --- a/module_index.json +++ b/module_index.json @@ -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 }, { diff --git a/modules/feature-recent-changes.php b/modules/feature-recent-changes.php index 08a6eb7..c743fc6 100644 --- a/modules/feature-recent-changes.php +++ b/modules/feature-recent-changes.php @@ -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); }