Eventhistory Overview: Use id attribues as the name attribute is deprecated
refs #8615
This commit is contained in:
parent
153f3ba2f9
commit
ea3e0bc013
|
@ -80,7 +80,7 @@ if (! $this->compact): ?>
|
||||||
<tr class="state <?= $stateName; ?>">
|
<tr class="state <?= $stateName; ?>">
|
||||||
<td class="state">
|
<td class="state">
|
||||||
<?php if ($history->getIteratorPosition() % $limit === 0): ?>
|
<?php if ($history->getIteratorPosition() % $limit === 0): ?>
|
||||||
<a name="page-<?= $history->getIteratorPosition() / $limit + 1; ?>"></a>
|
<a id="page-<?= $history->getIteratorPosition() / $limit + 1; ?>"></a>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<strong><?= $this->escape($title); ?></strong>
|
<strong><?= $this->escape($title); ?></strong>
|
||||||
<br>
|
<br>
|
||||||
|
@ -124,7 +124,7 @@ if (! $this->compact): ?>
|
||||||
'page' => $page + 1,
|
'page' => $page + 1,
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'name' => 'load-more',
|
'id' => 'load-more',
|
||||||
'class' => 'pull-right load-more'
|
'class' => 'pull-right load-more'
|
||||||
)
|
)
|
||||||
); ?>
|
); ?>
|
||||||
|
|
Loading…
Reference in New Issue