summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/popup-dialog.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php
index 34f6311c9..55ff54f9d 100644
--- a/modules/popup-dialog.php
+++ b/modules/popup-dialog.php
@@ -12,6 +12,11 @@
print __("Update daemon is enabled in configuration, but daemon
process is not running, which prevents all feeds from updating. Please
start the daemon process or contact instance owner.");
+
+ $stamp = (int)read_stampfile("update_daemon.stamp");
+
+ print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
+
}
if ($param == 2) {
@@ -31,6 +36,11 @@
perform a feed update. This could indicate a problem like crash
or a hang. Please check the daemon process or contact instance
owner.");
+
+ $stamp = (int)read_stampfile("update_daemon.stamp");
+
+ print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
+
}
print "</div>";