From 6df4d2cad4674c68ae46f270cb8139934d24ca18 Mon Sep 17 00:00:00 2001 From: Herb v/d Dool Date: Mon, 1 Feb 2021 13:17:54 -0500 Subject: [PATCH] Issue #2352: fix Views integration suggestion --- CRM/Admin/Form/Setting/UF.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Admin/Form/Setting/UF.php b/CRM/Admin/Form/Setting/UF.php index 208b2f3cf1..9f5e618540 100644 --- a/CRM/Admin/Form/Setting/UF.php +++ b/CRM/Admin/Form/Setting/UF.php @@ -74,6 +74,9 @@ class CRM_Admin_Form_Setting_UF extends CRM_Admin_Form_Setting { $prefix = ""; if ($config->dsn != $config->userFrameworkDSN) { $prefix = "`{$dsnArray['database']}`."; + if ($config->userFramework === 'Backdrop') { + $prefix = "{$dsnArray['database']}."; + } } foreach ($tableNames as $tableName) { $tablePrefixes .= "\n '" . str_pad($tableName . "'", 41) . " => '{$prefix}',"; -- 2.25.1