mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +01:00
Fix #3294: space picker encoding
This commit is contained in:
parent
0eee495ee6
commit
981a858b94
@ -9,6 +9,7 @@ HumHub Change Log
|
||||
- Enh: Improved theme parent lookup performance
|
||||
- Enh: Added auto file attachment in `humhub\modules\content\widgets\richtext\ProsemirrorRichTextProcessor`
|
||||
- Fix: z-index issue with fixed richtext menu
|
||||
- Fix #3294: space picker encoding
|
||||
|
||||
|
||||
1.3.2 (September 4, 2018)
|
||||
|
@ -22,7 +22,7 @@ class Chooser extends Widget
|
||||
{
|
||||
$spaceInfo = [];
|
||||
$spaceInfo['guid'] = $space->guid;
|
||||
$spaceInfo['title'] = Html::encode($space->name);
|
||||
$spaceInfo['title'] = $space->name;
|
||||
$spaceInfo['tags'] = Html::encode($space->tags);
|
||||
$spaceInfo['image'] = Image::widget(['space' => $space, 'width' => 24]);
|
||||
$spaceInfo['link'] = $space->getUrl();
|
||||
|
Loading…
x
Reference in New Issue
Block a user