Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

2.5.6 (Unreleased)
-----------------------
- Fix #421: Labels encoding (see [migration guide](https://github.com/humhub/humhub/blob/master/MIGRATE-DEV.md#version-1181))

2.5.5 (February 13, 2026)
-----------------------
- Fix #404: `.row` HTML elements without `.container` overflow
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"name": "Wiki",
"description": "Create and edit pages with this powerful tool. Build a collaborative knowledge base, view and share information with your colleagues.",
"keywords": ["wiki"],
"version": "2.5.5",
"version": "2.5.6",
"humhub": {
"minVersion": "1.18",
"minVersion": "1.18.1",
"maxVersion": "1.18"
},
"homepage": "https://github.com/humhub/wiki",
Expand Down
3 changes: 1 addition & 2 deletions widgets/views/wikiSearchForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
*/

use humhub\helpers\Html;
use humhub\modules\ui\icon\widgets\Icon;
use humhub\widgets\bootstrap\Button;
use humhub\widgets\form\ActiveForm;

Expand All @@ -19,6 +18,6 @@

<?= Html::textInput('keyword', $keyword, ['placeholder' => $placeholder, 'class' => 'form-control']) ?>

<?= Button::light(Icon::get('search'))->submit() ?>
<?= Button::light()->icon('search')->submit() ?>

<?php ActiveForm::end() ?>
2 changes: 1 addition & 1 deletion widgets/views/wikiSidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<?php WikiContent::begin(['cssClass' => 'wiki-page-content']) ?>
<div class="wiki-page-content-header clearfix">
<div class="d-flex align-items-end gap-3 py-2">
<h3 class="m-0 p-0"><?= Link::to(Html::encode($settings->module_label), Url::toLastEdited($contentContainer)) ?></h3>
<h3 class="m-0 p-0"><?= Link::to($settings->module_label, Url::toLastEdited($contentContainer)) ?></h3>
<?= Button::accent()->icon('fa-plus')->link(Url::toWikiCreate($contentContainer))->cssClass('btn-add-page my-1')->sm() ?>
</div>
<?= WikiSearchForm::widget(['contentContainer' => $contentContainer]) ?>
Expand Down