From: Rob H. <for...@us...> - 2002-09-16 05:30:16
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv6602/bin Modified Files: sandweb.cgi Log Message: removed the obsolete "work_dir" user config setting and added a "confirm_delete" setting. It is hooked up to the template through the CGI, but isn't hooked up to config ( can't be saved ) and it is currently ignored by delete_file(). almost there :) I'll try to finish this up tomorrow, and then work on VCS password confirmation. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.319 retrieving revision 1.320 diff -U2 -r1.319 -r1.320 --- sandweb.cgi 16 Sep 2002 05:06:47 -0000 1.319 +++ sandweb.cgi 16 Sep 2002 05:30:13 -0000 1.320 @@ -854,4 +854,5 @@ my $username = $auth->get_username(); my $full_name = $user->get_full_name(); + my $confirm_delete = $user->get_confirm_delete(); my $content = $ui->get_menu( @@ -859,4 +860,5 @@ PROGNAME => $progname, FULL_NAME => $full_name, + CONFIRM_DELETE => $confirm_delete, ); |