Cronos
06-Aug-2006, 05:55 PM
this is a suggestion, or a bug, depending how you woud
print_input_row($lang['ftp_password'], $lang['ftp_password_desc'], 'ftp_password', 'post', 'text', 100, 40, $setting['ftp_password'], '');
->
print_input_row($lang['ftp_password'], $lang['ftp_password_desc'], 'ftp_password', 'post', 'password', 100, 40, $setting['ftp_password'], '');
in the admin panel, the ftp password visible is never a good ideas, if i would to give the admin access to someone, this don't means that i would he could destroy my ftp account ;)
or better it could be
print_input_row($lang['ftp_password'], $lang['ftp_password_desc'], 'ftp_password', 'post', 'password', 100, 40,'', '');
leave empty the field, but this should processed when you retrive the data and do another control
but sometime leave it with 'password' type it's enought :)
print_input_row($lang['ftp_password'], $lang['ftp_password_desc'], 'ftp_password', 'post', 'text', 100, 40, $setting['ftp_password'], '');
->
print_input_row($lang['ftp_password'], $lang['ftp_password_desc'], 'ftp_password', 'post', 'password', 100, 40, $setting['ftp_password'], '');
in the admin panel, the ftp password visible is never a good ideas, if i would to give the admin access to someone, this don't means that i would he could destroy my ftp account ;)
or better it could be
print_input_row($lang['ftp_password'], $lang['ftp_password_desc'], 'ftp_password', 'post', 'password', 100, 40,'', '');
leave empty the field, but this should processed when you retrive the data and do another control
but sometime leave it with 'password' type it's enought :)