]> git.mxchange.org Git - friendica.git/commitdiff
add version info to notification text
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 7 Nov 2017 05:32:10 +0000 (06:32 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 7 Nov 2017 05:32:10 +0000 (06:32 +0100)
mod/admin.php

index e4f205e5c50896a39a1a77189999f8738b68473e..e0fe0166a87e24c8b388d37c8e964d96cdffddca 100644 (file)
@@ -620,7 +620,7 @@ function admin_page_summary(App $a) {
        if (Config::get('system', 'check_new_version_url', 'none') != 'none' ) {
                $gitversion = Config::get('system','git_friendica_version');
                if (version_compare(FRIENDICA_VERSION, $gitversion) < 0) {
-                       $warningtext[] = t('There is a new version of Friendica available for download.');
+                       $warningtext[] = sprintf(t('There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'), $FRIENDICA_VERSION, $gitversion);
                        $showwarning = true;
                }
        }