diff --git a/admin_autoupdate.php b/admin_autoupdate.php index 5e826e46..d1f6260c 100644 --- a/admin_autoupdate.php +++ b/admin_autoupdate.php @@ -105,7 +105,7 @@ if ($page == 'overview') { } } else { // no new version - Response::standardSuccess('update.noupdatesavail', [(Settings::Get('system.update_channel') == 'testing' ? lng('serversettings.uc_testing') : '')]); + Response::standardSuccess('update.noupdatesavail', [(Settings::Get('system.update_channel') == 'testing' ? lng('serversettings.uc_testing') . ' ' : '')]); } } // download the new archive elseif ($page == 'getdownload') { diff --git a/admin_updates.php b/admin_updates.php index babd4987..e99d3e3e 100644 --- a/admin_updates.php +++ b/admin_updates.php @@ -135,6 +135,6 @@ if ($page == 'overview') { 'alert_msg' => $ui_text . $message ]); } else { - Response::standardSuccess('update.noupdatesavail', [(Settings::Get('system.update_channel') == 'testing' ? lng('serversettings.uc_testing') : '')]); + Response::standardSuccess('update.noupdatesavail', [(Settings::Get('system.update_channel') == 'testing' ? lng('serversettings.uc_testing') . ' ' : '')]); } } diff --git a/lib/Froxlor/Api/Commands/Froxlor.php b/lib/Froxlor/Api/Commands/Froxlor.php index 383c3c95..a0888c04 100644 --- a/lib/Froxlor/Api/Commands/Froxlor.php +++ b/lib/Froxlor/Api/Commands/Froxlor.php @@ -101,7 +101,7 @@ class Froxlor extends ApiCommand 'version' => $this->version, 'message' => '', 'link' => '', - 'additional_info' => lng('update.noupdatesavail', [(Settings::Get('system.update_channel') == 'testing' ? lng('serversettings.uc_testing') : '')]) + 'additional_info' => lng('update.noupdatesavail', [(Settings::Get('system.update_channel') == 'testing' ? lng('serversettings.uc_testing') . ' ' : '')]) ]); } } diff --git a/lib/Froxlor/Cli/UpdateCommand.php b/lib/Froxlor/Cli/UpdateCommand.php index e24a3fd2..4a799227 100644 --- a/lib/Froxlor/Cli/UpdateCommand.php +++ b/lib/Froxlor/Cli/UpdateCommand.php @@ -94,7 +94,7 @@ final class UpdateCommand extends CliCommand return self::SUCCESS; } // no new version - $output->writeln('' . lng('update.noupdatesavail', [(Settings::Get('system.update_channel') == 'testing' ? lng('serversettings.uc_testing') : '')]) . ''); + $output->writeln('' . lng('update.noupdatesavail', [(Settings::Get('system.update_channel') == 'testing' ? lng('serversettings.uc_testing') . ' ' : '')]) . ''); $result = self::SUCCESS; } } catch (Exception $e) {