Skip to content

Commit

Permalink
Bug techjoomla#201 fix: Multi-select and radio button value did no di…
Browse files Browse the repository at this point in the history
…splay in details page
  • Loading branch information
ankush-maherwal committed Oct 10, 2019
1 parent a681176 commit 2f95457
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions site/layouts/fields/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
$xmlField = $displayData['fieldXml'];
$field = $displayData['field'];

if (!$xmlField instanceof SimpleXMLElement)
{
return;
}

$xmlOptions = $xmlField->children();
$options = array();

Expand Down

0 comments on commit 2f95457

Please sign in to comment.