From d98d91bd7ae1b0bac84fd2378633efdef715c16c Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Mon, 17 Dec 2018 08:15:25 +1100 Subject: [PATCH] Generalise the UsersTableName Setting name to support Backdrop Set Deafault as well to be users --- api/v3/examples/Setting/GetFields.php | 2 +- settings/Core.setting.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/v3/examples/Setting/GetFields.php b/api/v3/examples/Setting/GetFields.php index 32c450e058..478c1c2c5f 100644 --- a/api/v3/examples/Setting/GetFields.php +++ b/api/v3/examples/Setting/GetFields.php @@ -1118,7 +1118,7 @@ function setting_getfields_expectedresult() { 'maxlength' => '64', ), 'default' => '', - 'title' => 'Drupal Users Table Name', + 'title' => 'CMS Users Table Name', 'description' => '', ), 'wpLoadPhp' => array( diff --git a/settings/Core.setting.php b/settings/Core.setting.php index afc5566b6d..79499f6a45 100644 --- a/settings/Core.setting.php +++ b/settings/Core.setting.php @@ -858,8 +858,8 @@ return array( 'size' => '32', 'maxlength' => '64', ), - 'default' => NULL, - 'title' => ts('Drupal Users Table Name'), + 'default' => 'users', + 'title' => ts('CMS Users Table Name'), 'description' => '', ), 'wpLoadPhp' => array( -- 2.25.1