From b9e5161177b0d16c141dd1e7b55547c915c5fb11 Mon Sep 17 00:00:00 2001 From: Guillaume Date: Tue, 12 Feb 2019 08:13:18 +0100 Subject: [PATCH] Add lastBuildDate to RSS feed xml --- bl-plugins/rss/plugin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bl-plugins/rss/plugin.php b/bl-plugins/rss/plugin.php index 1959f467..3753948b 100644 --- a/bl-plugins/rss/plugin.php +++ b/bl-plugins/rss/plugin.php @@ -57,6 +57,7 @@ class pluginRSS extends Plugin { $xml .= ''.$site->title().''; $xml .= ''.$site->url().''; $xml .= ''.$site->description().''; + $xml .= ''.date(DATE_RSS).''; // Get keys of pages foreach ($list as $pageKey) { @@ -136,4 +137,4 @@ class pluginRSS extends Plugin { exit(0); } } -} \ No newline at end of file +}