Update Helpers.php

Supporting reserved keywords in custom fields
This commit is contained in:
Christoph Neuhaus 2022-07-29 12:05:30 +02:00 committed by GitHub
parent d984780a24
commit 064fe179f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ class Helpers
break;
default:
return is_null($value) ? '' : $value;
return is_null($value) ? '' : $this->processReservedKeywords($value, $entity);
break;
}
}