[v1.19] Update for HumHub 1.19 - #320
Open
yurabakhtin wants to merge 35 commits into
Open
Conversation
Update for HumHub 1.19
Fix next branch tests
PHP CS Fixer 2026-02-01-172327
Remove deprecations
# Conflicts: # docs/CHANGELOG.md # module.json # package-lock.json # widgets/search/views/taskSearchListEntry.php
Add aria-label attribute for icon-only buttons
# Conflicts: # docs/CHANGELOG.md # module.json
|
@yurabakhtin this isn't ready for v1.19 Issue 1Lines 19 to 26 in 6b1f3ce Fix: Remove 'closeButton' => true, as we already have 'closable' => true,
Issue 2https://github.com/humhub/tasks/blob/master/views/task/modal_entry.php <?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2018 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
use humhub\modules\content\widgets\stream\StreamEntryOptions;
use humhub\modules\stream\actions\StreamEntryResponse;
use humhub\modules\stream\assets\StreamAsset;
/* @var $this \humhub\components\View */
/* @var $task \humhub\modules\tasks\models\Task */
/* @var $collapse boolean */
StreamAsset::register($this);
$options = new StreamEntryOptions([
'viewContext' => StreamEntryOptions::VIEW_CONTEXT_MODAL,
]);
$entry = StreamEntryResponse::getAsArray($task->content, $options);
?>
<div data-action-component="stream.SimpleStream">
<?= $entry['output'] ?? '' ?>
</div> |
Contributor
Author
@ArchBlood Thanks, fixed e886c10. Update: Same fix for the Meeting module - https://github.com/humhub/meeting/pull/66/changes/d85c2fa0b1e20646ba783aced93756663aa10ede. In both cases the modal view from Full Calendar didn't work before, i.e. the code was not called at all, after these fixes I set |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://github.com/humhub/enterprise-theme/issues/213