MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: digitals (531)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //var/usr/webmin-1.941/pserver/save_sync.cgi
#!/usr/bin/perl
# save_sync.cgi
# Save unix-CVS synchronization options

require './pserver-lib.pl';
$access{'passwd'} || &error($text{'passwd_ecannot'});
&ReadParse();

if ($in{'sync_mode'} == 0) {
	delete($config{'sync_user'});
	}
else {
	defined(getpwnam($in{'sync_user'})) || &error($text{'save_eunix'});
	$config{'sync_user'} = $in{'sync_user'};
	}
$config{'sync_create'} = $in{'sync_create'};
$config{'sync_modify'} = $in{'sync_modify'};
$config{'sync_delete'} = $in{'sync_delete'};
&write_file("$module_config_directory/config", \%config);
&redirect("");