From 5f9fa817fb7d2a6c789d0d95ca215c591020f2d9 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 16 Mar 2019 23:41:06 +0100 Subject: [PATCH] Fix bad log --- htdocs/core/lib/functions.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index 6623525341a..a900cf98889 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -8037,7 +8037,7 @@ function dolGetStatus($statusLabel = '', $statusLabelShort = '', $html = '', $st $return = $htmlImg .' '. $htmlLabel; } elseif ($displayMode === 5) { - $return = $displayMode.$htmlLabelShort .' '. $htmlImg; + $return = $htmlLabelShort .' '. $htmlImg; } else { // $displayMode >= 6 $return = $htmlLabel .' '. $htmlImg;