From e53a45ec5deefa67443345fcd5bc86d964615fab Mon Sep 17 00:00:00 2001 From: Molkobain Date: Tue, 19 Oct 2021 15:40:42 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B02875=20-=20Update=20config.=20param.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/config.class.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/config.class.inc.php b/core/config.class.inc.php index b437b839a..c55cc5bed 100644 --- a/core/config.class.inc.php +++ b/core/config.class.inc.php @@ -1335,9 +1335,9 @@ class Config ], 'mentions.allowed_classes' => [ 'type' => 'array', - 'description' => 'Classes which can be mentioned through the autocomplete in the caselogs. Key of the array must be a single character that will trigger the autocomplete, value can be either a DM class or a valid OQL (eg. "@" => "Person", "?" => "SELECT FAQ WHERE status = \'published\'")', + 'description' => 'Classes which can be mentioned through the autocomplete in the caselogs. Key of the array must be a single character that will trigger the autocomplete, value must be a DM class (eg. "@" => "Person", "?" => "FAQ")', 'default' => [ - '@' => 'SELECT Person WHERE status = \'active\'', + '@' => 'Person', ], 'value' => false, 'source_of_value' => '',