Subversion Repositories personal-webbase

Rev

Rev 4 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
<?php
2
 
3 daniel-mar 3
if (!defined('IBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
2 daniel-mar 4
 
5
if ($ib_user_type < 2) die('Keine Zugriffsberechtigung');
6
 
7
  if ($aktion == 'changekonfig')
8
  {
9
    if ((!isset($allowuserreg)) || (($allowuserreg == '') || (($allowuserreg != '') && ($allowuserreg != '1')))) $allowuserreg = 0;
10
 
11
    ib_change_config('enable_userreg', $allowuserreg, $modul);
12
    if ((isset($sperrdauer)) && (is_numeric($sperrdauer)))
13
      ib_change_config('sperrdauer', $sperrdauer, $modul);
14
 
15
    if (!isset($vonmodul)) $vonmodul = 'admin_konfig';
16
    if (!isset($vonseite)) $vonseite = 'inhalt';
17
 
8 daniel-mar 18
    if (!headers_sent()) header('location: '.$_SERVER['PHP_SELF'].'?seite='.urlencode($vonseite).'&modul='.urlencode($vonmodul));
2 daniel-mar 19
  }
20
 
3 daniel-mar 21
?>