Merge branch 'master' into fix/undefinedindex

This commit is contained in:
buddh4 2020-09-14 18:36:08 +02:00 committed by GitHub
commit 19bf1159b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 5 deletions

View File

@ -3,6 +3,8 @@ HumHub Changelog
1.6.4 (Unreleased)
------------------
- Fix #4361: Added missing nonce attribute in inline marketplace script
- Fix #4371: Word break issue in notification dropdown
- Fix #4355: Fixed error when authclient not providing an id attribute

View File

@ -50,7 +50,7 @@ use humhub\libs\Html;
<?php endif; ?>
</div>
<script>
<script <?= Html::nonce(); ?>>
$('#categorySelect').change(function () {
$('#filterForm').submit();
});

View File

@ -1,7 +1,7 @@
<?php
use humhub\modules\ui\icon\widgets\Icon;
use yii\helpers\Html;
use humhub\libs\Html;
use yii\helpers\Url;
/* @var $modules [] */
@ -21,7 +21,8 @@ use yii\helpers\Url;
<?php if (empty($modules)): ?>
<br>
<div class="alert alert-success"><?= Icon::get('check')?> <?= Yii::t('MarketplaceModule.base', 'All modules are up to date!'); ?></div>
<div
class="alert alert-success"><?= Icon::get('check') ?> <?= Yii::t('MarketplaceModule.base', 'All modules are up to date!'); ?></div>
<?php endif; ?>
<?php foreach ($modules as $module): ?>
@ -59,7 +60,7 @@ use yii\helpers\Url;
<?php endforeach; ?>
</div>
<script>
<script <?= Html::nonce(); ?>>
$('#chkBeta').change(function () {
$('#betaSwitchForm').submit();
});

View File

@ -66,6 +66,7 @@
.media-body {
overflow: hidden !important;
font-size: 13px;
word-break: break-all;
h4.media-heading {
font-size: 14px;
font-weight: 500;

File diff suppressed because one or more lines are too long