mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 14:18:27 +01:00
Merge branch 'master' into enh/4088
This commit is contained in:
commit
01a6ad3a92
@ -11,8 +11,10 @@ HumHub Change Log
|
||||
- Fix #4078: Richtext linkextension pattern fails on link extensions with containing `)` in link title
|
||||
- Fix #4080: Invalid absolute urls created in acceptance tests
|
||||
- Fix #4030: #search-menu-nav required in theme view layout main
|
||||
- Fix #4086: Maximum call stack size exceeded thrown on ActivityStreamEntry.remove
|
||||
- Enh #4088: Improved table overflow handling in richtext content
|
||||
|
||||
|
||||
1.5.1 (April 19, 2020)
|
||||
----------------------
|
||||
|
||||
|
@ -384,7 +384,7 @@ humhub.module('stream.StreamEntry', function (module, require, $) {
|
||||
*/
|
||||
StreamEntry.prototype.remove = function () {
|
||||
var stream = this.stream();
|
||||
return this.super('remove').then($.proxy(stream.onChange, stream));
|
||||
return Content.prototype.remove.call(this).then($.proxy(stream.onChange, stream));
|
||||
};
|
||||
|
||||
module.export = StreamEntry;
|
||||
|
Loading…
x
Reference in New Issue
Block a user