Unverified Commit 5424f40e authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(msgPool) Fix typo in previous commit adding extra %s

issue #6172
Showing with 1 addition and 1 deletion
+1 -1
...@@ -569,7 +569,7 @@ class msgPool ...@@ -569,7 +569,7 @@ class msgPool
if ($error == '') { if ($error == '') {
return htmlescape(_('Communication failure with the infrastructure service!')); return htmlescape(_('Communication failure with the infrastructure service!'));
} }
return nl2br(htmlescape(sprintf(_("Communication failure with the infrastructure service: %s\n\nError: %s"), $error))); return nl2br(htmlescape(sprintf(_("Communication failure with the infrastructure service:\n\nError: %s"), $error)));
} }
/*! /*!
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment