Skip to content
Snippets Groups Projects
Commit 02dcc2fd authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

Merge pull request #1470 from kurund/CRM-13206

CRM-13206, fixed quill
parents 61a52f7c bd3728fb
No related branches found
No related tags found
No related merge requests found
...@@ -4998,7 +4998,14 @@ AND displayRelType.is_active = 1 ...@@ -4998,7 +4998,14 @@ AND displayRelType.is_active = 1
$dataType = 'String', $dataType = 'String',
$useIDsOnly = FALSE $useIDsOnly = FALSE
) { ) {
$qill = $value;
if (!empty($selectValues)) {
$qill = $selectValues[$value];
}
else {
$qill = $value;
}
$pseudoFields = array('email_greeting', 'postal_greeting', 'addressee', 'gender_id', 'prefix_id', 'suffix_id'); $pseudoFields = array('email_greeting', 'postal_greeting', 'addressee', 'gender_id', 'prefix_id', 'suffix_id');
if (is_numeric($value)) { if (is_numeric($value)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment