Skip to content
This repository was archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ldittmar81 committed Apr 12, 2019
1 parent 8e986d1 commit f48e144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/index_m.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
if ($this.attr('type') === 'checkbox') {
obj[$this.attr('id')] = $this.prop('checked');
} else if ($this.attr('type') === 'password') {
value = encrypt(secret, $this.val());
obj[$this.attr('id')] = encrypt(secret, $this.val());
} else {
obj[$this.attr('id')] = $this.val();
}
Expand Down

0 comments on commit f48e144

Please sign in to comment.