X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=cgi-bin%2FBackupPC_Admin;h=ac43d85845038463a3a9252bba6fcde0674fa6e4;hb=dcb39df8e33e09eabfb4eae471c2e6447094d0e2;hp=0226c22ba50f8c3915f6b5430f06f929df57c59f;hpb=ce708288691ba7dd95a8dac7a468bc0e4c1d6588;p=BackupPC.git diff --git a/cgi-bin/BackupPC_Admin b/cgi-bin/BackupPC_Admin index 0226c22..ac43d85 100755 --- a/cgi-bin/BackupPC_Admin +++ b/cgi-bin/BackupPC_Admin @@ -39,7 +39,7 @@ # #======================================================================== # -# Version 2.1.0beta0, released 20 Mar 2004. +# Version 3.0.0alpha, released 23 Jan 2006. # # See http://backuppc.sourceforge.net. # @@ -80,14 +80,14 @@ my %ActionDispatch = ( "startServer" => "StartServer", "Stop" => "StopServer", "adminOpts" => "AdminOptions", + "editConfig" => "EditConfig", + "rss" => "RSS", ); # # 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}};