Skip to content
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.

Commit

Permalink
Remove parenthesis (Task #20626)
Browse files Browse the repository at this point in the history
  • Loading branch information
acrias committed Aug 16, 2021
1 parent d45cec4 commit 8593801
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function provide($data = null, array $options = [])

$fieldName = $table->aliasField($field);

$data = (!is_string($data)) ? '' : $data;
$data = !is_string($data) ? '' : $data;

$relatedProperties = $this->_getRelatedProperties($options['fieldDefinitions']->getLimit(), $data);
if (!empty($relatedProperties['dispFieldVal']) && !empty($relatedProperties['config']['parent']['module'])) {
Expand Down

0 comments on commit 8593801

Please sign in to comment.