diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2021-12-21 15:30:35 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2021-12-21 15:30:35 +0000 |
commit | dc1f7f6bb73cd42dcd046292ff14017c1e2edffa (patch) | |
tree | 874bec98a24d6fe746c14eebca2e9bfbd2cbb495 /scripts/feeds.php | |
parent | 5236d4e30fc5fc7038643e8e5fec5ee36cf11a41 (diff) | |
download | pmwiki.svn-dc1f7f6bb73cd42dcd046292ff14017c1e2edffa.tar.bz2 |
Updates for PHP 8.1; add $EnableFTimeNew; PSFT() will cache some of the internal variables, also replace gmstrftime(), update feeds.php and notify.php.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@3853 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts/feeds.php')
-rw-r--r-- | scripts/feeds.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds.php b/scripts/feeds.php index 67b43c3b..7c99783e 100644 --- a/scripts/feeds.php +++ b/scripts/feeds.php @@ -211,7 +211,7 @@ function HandleFeed($pagename, $auth = 'read') { $pagelist = $pl; $FmtV['$FeedRDFSeq'] = $rdfseq; - $FmtV['$FeedISOTime'] = gmstrftime($TimeISOZFmt, $feedtime); + $FmtV['$FeedISOTime'] = PSFT($TimeISOZFmt, $feedtime, null, 'GMT'); $FmtV['$FeedRSSTime'] = gmdate($RSSTimeFmt, $feedtime); # format start of feed $out = FmtPageName($f['feed']['_start'], $pagename); |