diff options
author | Laria Carolin Chabowski <laria@laria.me> | 2020-11-08 22:02:08 +0100 |
---|---|---|
committer | Laria Carolin Chabowski <laria@laria.me> | 2020-11-08 22:02:08 +0100 |
commit | 71b5df2ea7d81fa98e1e5577233a411195ea47bc (patch) | |
tree | ee86f41755931bd1d1bc15de4d43c15fd703ef83 /plugin.php | |
parent | 504ab16840006be42ff1254ef58e26d8ed88e077 (diff) | |
download | r7r-atom-feed-71b5df2ea7d81fa98e1e5577233a411195ea47bc.tar.gz r7r-atom-feed-71b5df2ea7d81fa98e1e5577233a411195ea47bc.tar.bz2 r7r-atom-feed-71b5df2ea7d81fa98e1e5577233a411195ea47bc.zip |
Replace intcmp() call with <=>
Diffstat (limited to 'plugin.php')
-rw-r--r-- | plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -143,7 +143,7 @@ class atom_feed extends RatatoeskrPlugin if(!isset($article->title[$lang])) throw new NotFoundError(); $comments = $article->get_comments($lang, True); - usort($comments, function($a, $b) { return intcmp($a->get_timestamp(), $b->get_timestamp()); }); + usort($comments, function($a, $b) { return $a->get_timestamp() <=> $b->get_timestamp(); }); $this->ste->vars["feed"]["title"] = "Comments for " . $article->title[$lang]->text . " - " . $this->config["title"]; $this->ste->vars["feed"]["alternate"] = "$baseurl/$lang/" . $article->urlname; |