N°5943 - Fix undefined array key "Remote" in AjaxRenderController.php with DokuWiki extension

This commit is contained in:
Molkobain
2023-02-02 16:59:54 +01:00
parent 7cc1e33950
commit 1768274aaf
2 changed files with 26 additions and 2 deletions

View File

@@ -570,6 +570,12 @@ class LogChannels
public const CORE = 'core';
/**
* @var string Everything related to the datatable component
* @since 3.1.0
*/
public const DATATABLE = 'Datatable';
public const DEADLOCK = 'DeadLock';
public const INLINE_IMAGE = 'InlineImage';
@@ -577,11 +583,15 @@ class LogChannels
public const PORTAL = 'portal';
/**
* @var string
* @since 3.1.0 specific channel for event service
* @var string Everything related to the event service
* @since 3.1.0
*/
public const EVENT_SERVICE = 'EventService';
/**
* @var string Everything related to the datamodel CRUD
* @since 3.1.0
*/
public const DM_CRUD = 'DMCRUD';
}