fad6059b7395ad283aaea0a305d630cb597b6838
bernd Verwaltung von FTP-Accounts...

bernd authored 14 years ago

1) <?php
2) include('ftpusers.php');
3) 
4) require_role(ROLE_SYSTEMUSER);
5) 
bernd Security-enhancements und a...

bernd authored 14 years ago

6) if (isset($_GET['regular_ftp']))
7) {
8)   check_form_token('regular_ftp', $_REQUEST['token']);
9)   if ($_GET['regular_ftp'] == 'yes')
10)     enable_regular_ftp();
11)   else
12)     disable_regular_ftp();
13)   redirect('accounts'); 
14) }
15) 
16)