diff --git a/htdocs/societe/card.php b/htdocs/societe/card.php
index bc4aaf3e864..b25b7bf73b8 100644
--- a/htdocs/societe/card.php
+++ b/htdocs/societe/card.php
@@ -2426,7 +2426,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action))
print $langs->trans('CustomerCode');
print '';
print '
';
- print showValueWithCopyAndPasteButton($object->code_client, 'code_client',$langs);
+ print showValueWithCopyAndPasteButton($object->code_client, 'code_client', $langs);
print ' | ';
$tmpcheck = $object->check_codeclient();
if ($tmpcheck != 0 && $tmpcheck != -5) {
@@ -2945,7 +2945,8 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action))
* @param Translate $langs the $langs variable
* @return string the string to print for the button
*/
-function showValueWithCopyAndPasteButton($valuetoprint,$spanid,$langs){
+function showValueWithCopyAndPasteButton($valuetoprint, $spanid, $langs)
+{
$stringtoprint= '';
$stringtoprint.= $valuetoprint .' ';
$stringtoprint.= '';
@@ -2978,4 +2979,3 @@ function showValueWithCopyAndPasteButton($valuetoprint,$spanid,$langs){
// End of page
llxFooter();
$db->close();
-