Skip to content

Commit

Permalink
Fix issue #19
Browse files Browse the repository at this point in the history
  • Loading branch information
zonky2 committed May 17, 2021
1 parent 1b741d2 commit d05fc94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Resources/contao/templates/mm_attr_translatedfile.text
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php if (isset($this->raw['value']['path'])) { echo implode(', ', (array) $this->raw['value']['path']); } ?>
<?php if (isset($this->files)) { echo implode(',', (array) $this->files); } ?>
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php foreach((array) $this->raw['path'] as $file): ?>
<?php foreach((array) $this->files as $file): ?>
<?php echo $file; ?>
<?php endforeach; ?>

0 comments on commit d05fc94

Please sign in to comment.