Skip to content

Commit

Permalink
Fixed missing separator
Browse files Browse the repository at this point in the history
  • Loading branch information
IonAgorria committed Oct 29, 2014
1 parent 4ff5705 commit e875f0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/fourn/commande/card.php
Expand Up @@ -1122,11 +1122,11 @@

if ($result_order["result"]["result_code"] != "OK")
{
setEventMessage($langs->trans("SOAPError").$result_order["result"]["result_code"]."' - '".$result_order["result"]["result_label"]."'", 'errors');
setEventMessage($langs->trans("SOAPError")." '".$result_order["result"]["result_code"]."' - '".$result_order["result"]["result_label"]."'", 'errors');
}
else
{
setEventMessage($langs->trans("RemoteOrderRef").$result_order["ref"], 'mesgs');
setEventMessage($langs->trans("RemoteOrderRef")." ".$result_order["ref"], 'mesgs');
}
}
}
Expand Down

0 comments on commit e875f0c

Please sign in to comment.