summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/au/childau_delete.php
diff options
context:
space:
mode:
authorTarik Gasmi2007-05-14 09:46:29 +0200
committerTarik Gasmi2007-05-14 09:46:29 +0200
commitb192e30ee65a420e12b71cbc0b410754983c052e (patch)
tree7e1b63e5c932d15d33943e7bab1cba8fe394c7fb /ldap-site-mngmt/webinterface/au/childau_delete.php
parent* fixed incorrect execution of chroot with respect to setting up the (diff)
downloadcore-b192e30ee65a420e12b71cbc0b410754983c052e.tar.gz
core-b192e30ee65a420e12b71cbc0b410754983c052e.tar.xz
core-b192e30ee65a420e12b71cbc0b410754983c052e.zip
Some webinterface data.
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1076 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'ldap-site-mngmt/webinterface/au/childau_delete.php')
-rw-r--r--ldap-site-mngmt/webinterface/au/childau_delete.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/ldap-site-mngmt/webinterface/au/childau_delete.php b/ldap-site-mngmt/webinterface/au/childau_delete.php
new file mode 100644
index 00000000..f9bd75d7
--- /dev/null
+++ b/ldap-site-mngmt/webinterface/au/childau_delete.php
@@ -0,0 +1,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>";
+
+?> \ No newline at end of file