X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=cgi-bin%2FBackupPC_Admin;h=0d5ec32fdc4908b2752723e05dc7c4eda54d8d2c;hb=4e25aa1b6e3abfdf9f7e1e50850c8057ec270a56;hp=32293dfaf5ca0f38146a29b6427d5af940460979;hpb=2c14784ad71874ec850d189060fe63d6eb9eba95;p=BackupPC.git diff --git a/cgi-bin/BackupPC_Admin b/cgi-bin/BackupPC_Admin index 32293df..0d5ec32 100755 --- a/cgi-bin/BackupPC_Admin +++ b/cgi-bin/BackupPC_Admin @@ -39,7 +39,7 @@ # #======================================================================== # -# Version 2.1.0_CVS, released 8 Feb 2004. +# Version 2.1.0, released 20 Jun 2004. # # See http://backuppc.sourceforge.net. # @@ -80,14 +80,14 @@ my %ActionDispatch = ( "startServer" => "StartServer", "Stop" => "StopServer", "adminOpts" => "AdminOptions", + "editConfig" => "EditConfig", + #"editHosts" => "EditHosts", ); # # Set default actions, then call sub handler # $In{action} ||= "hostInfo" if ( defined($In{host}) ); -## rk default non admin users to pc summary for their hosts -$In{action} = "summary" if ( !defined($ActionDispatch{$In{action}}) && !CheckPermission()); $In{action} = "generalInfo" if ( !defined($ActionDispatch{$In{action}}) ); my $action = $ActionDispatch{$In{action}};