Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/4.0-dev' into fix-24782
Browse files Browse the repository at this point in the history
  • Loading branch information
Rene Pasing committed Sep 4, 2019
2 parents 4c92e64 + 737e4f1 commit a9cc0d5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion administrator/components/com_cache/tmpl/cache/default.php
Expand Up @@ -26,7 +26,12 @@
<div class="col-md-12">
<div id="j-main-container" class="j-main-container">
<?php echo LayoutHelper::render('joomla.searchtools.default', ['view' => $this]); ?>
<?php if (count($this->data) > 0) : ?>
<?php if (empty($this->items)) : ?>
<div class="alert alert-info">
<span class="fa fa-info-circle" aria-hidden="true"></span><span class="sr-only"><?php echo Text::_('INFO'); ?></span>
<?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
</div>
<?php else : ?>
<table class="table">
<caption id="captionTable" class="sr-only">
<?php echo Text::_('COM_CACHE_TABLE_CAPTION'); ?>, <?php echo Text::_('JGLOBAL_SORTED_BY'); ?>
Expand Down
Expand Up @@ -16,7 +16,7 @@
use Joomla\Component\Fields\Administrator\Helper\FieldsHelper;

/**
* ComponentDispatcher class for com_content
* ComponentDispatcher class for com_fields
*
* @since 4.0.0
*/
Expand Down
2 changes: 2 additions & 0 deletions build/media_source/mod_login/js/admin-login.es6.js
Expand Up @@ -39,6 +39,8 @@

if (element.hasAttribute('name') && element.nodeName === 'INPUT') {
segments.push(`${encodeURIComponent(element.name)}=${encodeURIComponent(element.value)}`);
} else if (element.hasAttribute('name') && element.nodeName === 'SELECT' && element.value.length > 0) {
segments.push(`${encodeURIComponent(element.name)}=${encodeURIComponent(element.value)}`);
}
}

Expand Down

0 comments on commit a9cc0d5

Please sign in to comment.