From 1e890e16ac07c638c314489fb44ae34636946d3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Wed, 8 Jun 2022 11:46:09 +0200 Subject: [PATCH] Switched maximum database update with currently worked on to "current/max" as this is understandable that update X of maximum Y is applied. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- src/Module/Friendica.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Module/Friendica.php b/src/Module/Friendica.php index c5a66fa3d5..6b5e05c8b3 100644 --- a/src/Module/Friendica.php +++ b/src/Module/Friendica.php @@ -97,8 +97,8 @@ class Friendica extends BaseModule 'about' => DI::l10n()->t('This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.', '' . FRIENDICA_VERSION . '', DI::baseUrl()->get(), - '' . DB_UPDATE_VERSION . '/' . $config->get('system', 'build') .'', - '' . PostUpdate::VERSION . '/' . $config->get('system', 'post_update_version') . ''), + '' . $config->get('system', 'build') . '/' . DB_UPDATE_VERSION . '', + '' . $config->get('system', 'post_update_version') . '/' . PostUpdate::VERSION . ''), 'friendica' => DI::l10n()->t('Please visit Friendi.ca to learn more about the Friendica project.'), 'bugs' => DI::l10n()->t('Bug reports and issues: please visit') . ' ' . '' . DI::l10n()->t('the bugtracker at github') . '', 'info' => DI::l10n()->t('Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'),