From a41d2c65a08d184badcedeed3f85e1d6aff478c3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 30 Aug 2006 04:57:20 +0100 Subject: better new version detection --- functions.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index a80c5bda3..25b7dff76 100644 --- a/functions.php +++ b/functions.php @@ -2570,17 +2570,16 @@ return; } - $last_item = $items[0]; + $latest_item = $items[0]; - $last_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_item["title"])); - $cur_version = preg_replace("/\.99/", "", VERSION); + $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $latest_item["title"])); $release_url = sanitize_rss($last_item["link"]); $content = sanitize_rss($last_item["description"]); - if ($cur_version != $last_version) { + if (version_compare(VERSION, $latest_version) == -1) { return "
- New version of Tiny-Tiny RSS ($last_version) is available (click for details) + New version of Tiny-Tiny RSS ($latest_version) is available (click for details)
$content
"; } } -- cgit v1.2.3