diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-03-12 16:23:09 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-03-12 16:23:09 +0000 |
commit | 698bb3f8b8b57419876db24227d71f779795a4a7 (patch) | |
tree | 7a345ec68fd8dabd691a8d57dc97195c366764f1 /bin | |
parent | dc46148a937bd096c4117e90746b9f5c90d143e3 (diff) |
Adding quotes to bin/am.pl to avoid password problems
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@884 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/am.pl | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2092,9 +2092,9 @@ sub config { <form method=post action=$form->{script}> -<input type=hidden name=old_password value=$myconfig{password}> +<input type=hidden name=old_password value="$myconfig{password}"> <input type=hidden name=type value=preferences> -<input type=hidden name=role value=$myconfig{role}> +<input type=hidden name=role value="$myconfig{role}"> <table width=100%> <tr><th class=listtop>$form->{title}</th></tr> @@ -2138,7 +2138,7 @@ sub config { <table> <tr> <th align="right">|.$locale->text('Password').qq|</th> - <td><input type=password name=new_password size=10 value=$myconfig{password}></td> + <td><input type=password name=new_password size=10 value="$myconfig{password}"></td> </tr> <tr> <th align="right">|.$locale->text('Confirm').qq|</th> |