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'),