(11-16-2018, 02:17 AM)fearworks Wrote: The show/hide password issue is a simple Javascript issue. If you download the latest version of the module.zpm file for the FTP Management module from the Github master repository, it should work:
https://raw.githubusercontent.com/sentor...module.zpm
I did tweak two lines for it to work how I wanted on my servers:
Code:$('#btn_sh').innerHTML = 'Hide passwords';
$('#btn_sh').innerHTML = 'Show passwords';
changed to:
Code:$('#btn_sh').html('Hide passwords');
$('#btn_sh').html('Show passwords');
Give it a try and see if it now works.
Keith.
That's good, Keith. Thanks!
Both changes were necessary. First updating the module from github did make the passwords show and hide. However, the button always said "Show passwords". The code change you provided corrected the text to say "Hide passwords" when appropriate.