We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac933ed commit f8ec4beCopy full SHA for f8ec4be
2 files changed
interface/web/sites/form/webdav_user.tform.php
@@ -96,7 +96,8 @@
96
),
97
'password' => array (
98
'datatype' => 'VARCHAR',
99
- 'formtype' => 'TEXT',
+ 'encryption' => 'CLEARTEXT',
100
+ 'formtype' => 'PASSWORD',
101
'default' => '',
102
'value' => '',
103
'width' => '30',
interface/web/sites/webdav_user_edit.php
@@ -134,6 +134,7 @@ function onBeforeInsert() {
134
135
function onAfterInsert() {
136
global $app, $conf;
137
+ /* change pwd here */
138
139
$web = $app->db->queryOneRecord("SELECT * FROM web_domain WHERE domain_id = ".intval($this->dataRecord["parent_domain_id"]));
140
$server_id = $web["server_id"];
@@ -168,7 +169,7 @@ function onBeforeUpdate() {
168
169
170
function onAfterUpdate() {
171
-
172
+ /* change PWD here */
173
174
}
175
0 commit comments