From: Joe Z. <jz...@us...> - 2003-05-19 00:11:42
|
Update of /cvsroot/bobs/bobs In directory sc8-pr-cvs1:/tmp/cvs-serv19698/bobs Modified Files: ChangeLog TODO admin.php Log Message: Allow special characters in passwords. Index: ChangeLog =================================================================== RCS file: /cvsroot/bobs/bobs/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- ChangeLog 18 May 2003 06:37:41 -0000 1.11 +++ ChangeLog 19 May 2003 00:11:38 -0000 1.12 @@ -26,6 +26,9 @@ Convert admin.php to use rfasttemplate class. -- 5-17-2003 Restructure admin.php to add some basic input validation. + -- 5-18-2003 bug fix + Special characters in samba passwords are now quoted in the + ini file and the smbmount command. Version 0.6.0pre1 Rene Rask (re...@gr...) Index: TODO =================================================================== RCS file: /cvsroot/bobs/bobs/TODO,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- TODO 18 May 2003 06:37:41 -0000 1.18 +++ TODO 19 May 2003 00:11:39 -0000 1.19 @@ -29,7 +29,7 @@ Add security. Priority: Medium Backup directories (/var/bobsdata/) should not be world readable. - Encrypt passwords. + Encrypt passwords, but what if they need to be sent in plain text? User and group administration Priority: Medium Index: admin.php =================================================================== RCS file: /cvsroot/bobs/bobs/admin.php,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- admin.php 18 May 2003 06:37:41 -0000 1.22 +++ admin.php 19 May 2003 00:11:39 -0000 1.23 @@ -398,7 +398,7 @@ $html .= parse_edit_type( // convert server config field to html $name, // name - $servercfg->config["$name"], // value + $servercfg->config["$name"], // value $io, // input/output mode $server_defs); // server field definitions } |