mirror of
https://github.com/humhub/humhub.git
synced 2025-03-14 20:19:47 +01:00
Fix #3581: Search form with GET causes repeated sticking of url parameters (@Bhoft)
This commit is contained in:
parent
8c8dbc49a8
commit
8bf8b78f61
@ -11,7 +11,8 @@ HumHub Change Log
|
||||
- Fix: Directory stats progress color (@Felli)
|
||||
- Fix #2724: Edited post does not display the space on dashboard
|
||||
- Fix #3533: Responsive design issues
|
||||
- Fix #3471: Display of Date Time Column in excel with empty/false value
|
||||
- Fix #3471: Display of Date Time Column in excel with empty/false value
|
||||
- Fix #3581: Search form with GET causes repeated sticking of url parameters (@Bhoft)
|
||||
|
||||
|
||||
1.3.13 (May 3, 2019)
|
||||
|
@ -7,6 +7,8 @@ use humhub\modules\admin\grid\SpaceActionColumn;
|
||||
use humhub\modules\admin\grid\SpaceTitleColumn;
|
||||
use humhub\modules\admin\grid\SpaceImageColumn;
|
||||
use humhub\modules\admin\models\SpaceSearch;
|
||||
use yii\helpers\Url;
|
||||
|
||||
?>
|
||||
|
||||
<?= Html::a('<i class="fa fa-plus" aria-hidden="true"></i> ' . Yii::t('AdminModule.space', 'Add new space'), ['/space/create'], ['class' => 'btn btn-sm btn-success pull-right', 'data-target' => '#globalModal']); ?>
|
||||
@ -17,7 +19,7 @@ use humhub\modules\admin\models\SpaceSearch;
|
||||
</div>
|
||||
|
||||
<br />
|
||||
<?php $form = ActiveForm::begin(['method' => 'get']); ?>
|
||||
<?php $form = ActiveForm::begin(['method' => 'get', 'action' => Url::to(['/admin/space'])]); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<div class="input-group">
|
||||
|
@ -32,7 +32,7 @@ use yii\widgets\ActiveForm;
|
||||
|
||||
<br />
|
||||
|
||||
<?php $form = ActiveForm::begin(['method' => 'get']); ?>
|
||||
<?php $form = ActiveForm::begin(['method' => 'get', 'action' => Url::to(['/admin/user/list'])]); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<div class="input-group">
|
||||
@ -72,4 +72,4 @@ use yii\widgets\ActiveForm;
|
||||
<br/>
|
||||
<?= Button::defaultType(Yii::t('AdminModule.user', 'List pending registrations'))->link(Url::to(['/admin/pending-registrations']))->right()->sm(); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user