Skip to content

Commit

Permalink
Merge branch '4.4-dev' into fix_article_categories_module
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy committed Mar 2, 2024
2 parents 9cbbe59 + d72d639 commit 1c6f02d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions administrator/components/com_cache/tmpl/cache/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
<th scope="col" class="title">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_GROUP', 'group', $listDirn, $listOrder); ?>
</th>
<th scope="col" class="w-10 text-center">
<th scope="col" class="w-10 text-center d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_NUMBER_OF_FILES', 'count', $listDirn, $listOrder); ?>
</th>
<th scope="col" class="w-10 text-end">
<th scope="col" class="w-10 text-end d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_SIZE', 'size', $listDirn, $listOrder); ?>
</th>
</tr>
Expand All @@ -76,10 +76,10 @@
<th scope="row">
<?php echo $this->escape($item->group); ?>
</th>
<td class="text-center">
<td class="text-center d-none d-md-table-cell">
<?php echo $item->count; ?>
</td>
<td class="text-end">
<td class="text-end d-none d-md-table-cell">
<?php echo '&#x200E;' . HTMLHelper::_('number.bytes', $item->size); ?>
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion layouts/joomla/form/field/list-fancy-select.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($val, ENT_COMPAT, 'UTF-8') . '">';
}
} else {
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '">';
$html[] = '<input type="hidden" id="' . $id . '-value" name="' . $name . '" value="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '">';
}
} else // Create a regular list.
{
Expand Down
2 changes: 1 addition & 1 deletion layouts/joomla/form/field/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($val, ENT_COMPAT, 'UTF-8') . '">';
}
} else {
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '">';
$html[] = '<input type="hidden" id="' . $id . '-value" name="' . $name . '" value="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '">';
}
} else // Create a regular list passing the arguments in an array.
{
Expand Down

0 comments on commit 1c6f02d

Please sign in to comment.