Skip to content

Commit

Permalink
Update function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Usbac committed Jan 14, 2024
1 parent 800a58b commit 66297bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/admin/partials/images_dialog.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class="listing-row file"
</div>
<div class="w20 file-info">
<?php if ($file['is_file']): ?>
<p><?= e(\Aurora\App\Media::getFileSize($file['size'])) ?></p>
<p><?= e(\Aurora\System\Helper::getByteSize($file['size'])) ?></p>
<?php endif ?>
<p><?= e($file['mime']) ?></p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/admin/partials/media.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</div>
<div class="w20 file-info">
<?php if ($file['is_file']): ?>
<p><?= e(\Aurora\App\Media::getFileSize($file['size'])) ?></p>
<p><?= e(\Aurora\System\Helper::getByteSize($file['size'])) ?></p>
<?php endif ?>
<p><?= e($file['mime']) ?></p>
</div>
Expand Down

0 comments on commit 66297bb

Please sign in to comment.