Subversion Repositories personal-webbase

Rev

Rev 4 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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