summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/au/childau_delete.php
blob: f9bd75d75ca5f76a3a7bcdedfab6f6e19420bb75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php

include('../standard_header.inc.php');

# $_POST form variables
$delmodus = $_POST['delmodus'];
$childDN = $_POST['childdn'];
$childou = $_POST['childou'];
$oldchilddomain = $_POST['oldchilddomain'];
#print_r($childDN); echo "<br>";
#print_r($oldchilddomain); echo "<br>";
#print_r($entrydel); echo "<br>";

$url = 'au_childs.php';

echo "
	<html>
	<head>
		<title>AU Management</title>
		<link rel='stylesheet' href='../styles.css' type='text/css'>
	</head>
	<body>
	<table border='0' cellpadding='30' cellspacing='0'> 
	<tr><td>";

$mesg = delete_childau($childDN,$childou,$delmodus);

$mesg .= "<br>Sie werden automatisch auf die vorherige Seite zur&uuml;ckgeleitet. <br>
	Falls nicht, klicken Sie hier <a href=".$url." style='publink'>back</a>";
redirect(2, $url, $mesg, $addSessionId = TRUE);

echo "</td></tr></table></body></html>";

?>