From dfa855b4f7c8f1622421868edf7440644e3f17e7 Mon Sep 17 00:00:00 2001 From: Guillaume Lajarige Date: Mon, 13 Jun 2016 12:52:35 +0000 Subject: [PATCH] Customer portal : ExternalField form field was crashing due to a typo. SVN:trunk[4202] --- core/attributedef.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index 11ede9542..2e5485a66 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -4729,7 +4729,7 @@ class AttributeExternalField extends AttributeDefinition // Note : As of today, this attribute is -by nature- only supported in readonly mode, not edition $sAttCode = $this->GetCode(); - $sAttCodeFriendlyname = $sAttCode .= '_friendlyname'; + $sAttCodeFriendlyname = $sAttCode . '_friendlyname'; if ($this->IsExternalKey(EXTKEY_ABSOLUTE) && MetaModel::IsValidAttCode(get_class($oObject), $sAttCodeFriendlyname)) { $sAttCode = $sAttCodeFriendlyname;