diff options
author | Ted Trask <ttrask01@yahoo.com> | 2009-01-12 20:34:27 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2009-01-12 20:34:27 +0000 |
commit | f4bffff49b7eac4e1936344d6dd8fa4d5df8f2b4 (patch) | |
tree | 941dddf445018f038ed0b4fee51d92eb146cb3c3 /app/acf-util/password-html.lsp | |
parent | 91a357f0a98cd42129017b8473d9c0879a9582e5 (diff) | |
download | acf-core-f4bffff49b7eac4e1936344d6dd8fa4d5df8f2b4.tar.bz2 acf-core-f4bffff49b7eac4e1936344d6dd8fa4d5df8f2b4.tar.xz |
Modified several pages to replace contenteditable with readonly. Added readonly to html.lsp and .css files.
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1676 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app/acf-util/password-html.lsp')
-rwxr-xr-x | app/acf-util/password-html.lsp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/acf-util/password-html.lsp b/app/acf-util/password-html.lsp index dca559d..faf8e44 100755 --- a/app/acf-util/password-html.lsp +++ b/app/acf-util/password-html.lsp @@ -17,7 +17,7 @@ io.write("</span>") end -- If not in newuser action, disable userid if pageinfo.action ~= "newuser" then - form.value.userid.contenteditable = false + form.value.userid.readonly = true end local order = { "userid", "username", "roles", "password", "password_confirm" } displayform(form, order) |