summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/pref/prefs.php2
-rw-r--r--include/update_self.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index e30a82575..5b472d5a9 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -510,7 +510,7 @@ class Pref_Prefs extends Handler_Protected {
__('Update Tiny Tiny RSS')."</button></p>";
} else {
- print_notice(__("You are currently using latest version of Tiny Tiny RSS. Update not required."));
+ print_notice(__("Your Tiny Tiny RSS installation is up to date."));
}
print "</div>"; #pane
diff --git a/include/update_self.php b/include/update_self.php
index 6e57213b9..c71081115 100644
--- a/include/update_self.php
+++ b/include/update_self.php
@@ -45,7 +45,7 @@
_debug("Target version: $target_version");
if (version_compare(VERSION, $target_version) != -1 && !$force) {
- _debug("You are on the latest version. Update not needed.");
+ _debug("Your Tiny Tiny RSS installation is up to date.");
exit;
}
if (file_exists($target_dir)) {