Subversion Repositories personal-webbase

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
<?php
2
 
3
if (!defined('WBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
4
 
5
if ($aktion == 'change_configuration')
6
{
7
        if ((!isset($userselfdel)) || (($userselfdel == '') || (($userselfdel != '') && ($userselfdel != '1')))) $userselfdel = 0;
8
 
9
        wb_change_config('allow_user_selfdelete', $userselfdel, $modul);
10
 
11
        if (!isset($vonmodul)) $vonmodul = 'admin_configuration';
12
        if (!isset($vonseite)) $vonseite = 'main';
13
 
14
        wb_redirect_now($_SERVER['PHP_SELF'].'?seite='.$vonseite.'&modul='.$vonmodul);
15
}
16
 
17
?>