summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-10-30 01:04:47 +0000
committerTed Trask <ttrask01@yahoo.com>2014-10-30 01:04:47 +0000
commitdd629c93fd55a2766655e857b75c58a7eaae6040 (patch)
tree4b785d827e4b1c6f93c3ad9077be0e5d9cb20b91 /lib
parent3300faf8631c3a712e89ee04773670cb3f039ac6 (diff)
downloadacf-db-dd629c93fd55a2766655e857b75c58a7eaae6040.tar.bz2
acf-db-dd629c93fd55a2766655e857b75c58a7eaae6040.tar.xz
Do not hide the username and password from listdatabases HTML view
Diffstat (limited to 'lib')
-rw-r--r--lib/db-listdatabases-html.lsp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/db-listdatabases-html.lsp b/lib/db-listdatabases-html.lsp
index dcc9dcf..91ffa72 100644
--- a/lib/db-listdatabases-html.lsp
+++ b/lib/db-listdatabases-html.lsp
@@ -24,10 +24,8 @@
<% local header_level = htmlviewfunctions.displaysectionstart(form, page_info) %>
<% if form.value.connection then
- -- hide the database, user, and password, since we don't need them to list databases
+ -- hide the database, since we don't need it to list databases
form.value.connection.value.database = nil
- form.value.connection.value.user = nil
- form.value.connection.value.password = nil
end %>
<% if form.value.connection and next(form.value.connection.value) ~= nil then
htmlviewfunctions.displayformstart(form, page_info)