Skip to content

Commit

Permalink
Correct implode() argument order (#27216)
Browse files Browse the repository at this point in the history
  • Loading branch information
SharkyKZ authored and HLeithner committed Dec 6, 2019
1 parent f794274 commit 45c42cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/joomla/form/field/moduleorder.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@

HTMLHelper::_('webcomponent', 'system/fields/joomla-field-module-order.min.js', ['version' => 'auto', 'relative' => true]);
?>
<joomla-field-module-order <?php echo implode($attributes, ' '); ?>></joomla-field-module-order>
<joomla-field-module-order <?php echo implode(' ', $attributes); ?>></joomla-field-module-order>

0 comments on commit 45c42cd

Please sign in to comment.