mirror of
https://github.com/Karaka-Management/oms-Media.git
synced 2026-02-14 16:28:41 +00:00
fix table overflow
This commit is contained in:
parent
5019eb681b
commit
5e3a49e0e9
|
|
@ -130,7 +130,7 @@ final class BackendController extends Controller
|
|||
|
||||
foreach ($glob as $file) {
|
||||
$basename = \basename($file);
|
||||
if ($basename[0] === '_' && \strlen($basename) === 3) {
|
||||
if ($basename[0] === '_' && \strlen($basename) === 5) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -81,6 +81,7 @@ $next = empty($media) ? '{/prefix}media/list' : '{/prefix}media/list?{?}&id=
|
|||
<div class="col-xs-12">
|
||||
<div class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Media'); ?><i class="fa fa-download floatRight download btn"></i></div>
|
||||
<div class="slider">
|
||||
<table id="iMediaList" class="default sticky">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
@ -207,6 +208,7 @@ $next = empty($media) ? '{/prefix}media/list' : '{/prefix}media/list?{?}&id=
|
|||
<tr><td colspan="8" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
</div>
|
||||
<div class="portlet-foot">
|
||||
<a tabindex="0" class="button" href="<?= UriFactory::build($previous); ?>"><?= $this->getHtml('Previous', '0', '0'); ?></a>
|
||||
<a tabindex="0" class="button" href="<?= UriFactory::build($next); ?>"><?= $this->getHtml('Next', '0', '0'); ?></a>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user