Skip to content

Commit

Permalink
Update layouts/joomla/content/options_default.php
Browse files Browse the repository at this point in the history
Co-authored-by: Quy <quy@nomonkeybiz.com>
  • Loading branch information
LadySolveig and Quy committed Feb 18, 2024
1 parent 21a2521 commit e42c9d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/joomla/content/options_default.php
Expand Up @@ -29,7 +29,7 @@
<?php $fieldsnames = explode(',', $displayData->fieldsname); ?>
<div class="form-grid">
<?php foreach ($fieldsnames as $fieldname) : ?>
<?php if (array_key_exists($fieldname, $fieldsets) && (property_exists($fieldsets[$fieldname], 'description') && (!empty($fieldsets[$fieldname]->description)))) : ?>
<?php if (array_key_exists($fieldname, $fieldsets) && property_exists($fieldsets[$fieldname], 'description') && !empty($fieldsets[$fieldname]->description)) : ?>
<div class="tab-description alert alert-info">
<span class="icon-info-circle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('INFO'); ?></span>
<?php echo Text::_($fieldsets[$fieldname]->description); ?>
Expand Down

0 comments on commit e42c9d5

Please sign in to comment.