fix fatal error deleting accounts via LDAP/AD import

This commit is contained in:
ralf 2023-12-13 17:04:54 +02:00
parent f6d9918224
commit 5df34bce91

View File

@ -1106,6 +1106,10 @@ class Translation
*/
static function get_message_id($translation,$app=null,$lang=null)
{
if (!isset(self::$db))
{
self::init();
}
$where = array('content '.self::$db->capabilities[Db::CAPABILITY_CASE_INSENSITIV_LIKE].' '.self::$db->quote($translation));
if ($app) $where['app_name'] = $app;
if ($lang) $where['lang'] = $lang;