From c1418f4ae00a1a6d3bbb3d4ed7e12305c53008c8 Mon Sep 17 00:00:00 2001 From: mcramer <m.cramer@pixcept.de> Date: Wed, 21 Aug 2013 14:06:20 -0400 Subject: [PATCH] - Implemented: FS#3108 - Make remoting modular --- interface/web/sites/form/database_user.tform.php | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/interface/web/sites/form/database_user.tform.php b/interface/web/sites/form/database_user.tform.php index 2bac933..d2a2def 100644 --- a/interface/web/sites/form/database_user.tform.php +++ b/interface/web/sites/form/database_user.tform.php @@ -29,7 +29,7 @@ Hint: The ID field of the database table is not part of the datafield definition. The ID field must be always auto incement (int or bigint). - + Search: - searchable = 1 or searchable = 2 include the field in the search - searchable = 1: this field will be the title of the search result @@ -44,7 +44,7 @@ $form["action"] = "database_user_edit.php"; $form["db_table"] = "web_database_user"; $form["db_table_idx"] = "database_user_id"; -$form["db_history"] = "no"; +$form["db_history"] = "yes"; $form["tab_default"] = "database_user"; $form["list_default"] = "database_user_list.php"; $form["auth"] = 'yes'; // yes / no @@ -108,6 +108,14 @@ 'width' => '30', 'maxlength' => '255' ), + 'database_password_mongo' => array ( + 'datatype' => 'VARCHAR', + 'formtype' => 'PASSWORD', + 'default' => '', + 'value' => '', + 'width' => '30', + 'maxlength' => '255' + ), ################################## # ENDE Datatable fields ################################## -- Gitblit v1.9.1