display abstract DNs

This commit is contained in:
Roland Gruber 2010-05-31 18:15:41 +00:00
parent 73fa3cdead
commit 1772ca14a7
1 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ if (isset($_POST['createOU']) || isset($_POST['deleteOU'])) {
include 'main_header.php'; include 'main_header.php';
echo "<br>\n" . echo "<br>\n" .
"<p><big><b>" . _("Do you really want to delete this OU?") . " </b></big>" . "\n" . "<p><big><b>" . _("Do you really want to delete this OU?") . " </b></big>" . "\n" .
"<br>\n<p>" . $_POST['deleteableOU'] . "</p>\n" . "<br>\n<p>" . getAbstractDN($_POST['deleteableOU']) . "</p>\n" .
"<br>\n" . "<br>\n" .
"<form action=\"ou_edit.php\" method=\"post\">\n" . "<form action=\"ou_edit.php\" method=\"post\">\n" .
"<input type=\"hidden\" name=\"deleteOU\" value=\"submit\">\n" . "<input type=\"hidden\" name=\"deleteOU\" value=\"submit\">\n" .
@ -153,7 +153,7 @@ function display_main($message, $error) {
$options .= "<optgroup label=\"" . $title . "\">\n"; $options .= "<optgroup label=\"" . $title . "\">\n";
$units = $_SESSION['ldap']->search_units($_SESSION["config"]->get_Suffix($name)); $units = $_SESSION['ldap']->search_units($_SESSION["config"]->get_Suffix($name));
for ($u = 0; $u < sizeof($units); $u++) { for ($u = 0; $u < sizeof($units); $u++) {
$options .= "<option>" . $units[$u] . "</option>\n"; $options .= "<option value=\"" . $units[$u] . "\">" . getAbstractDN($units[$u]) . "</option>\n";
} }
$options .= "</optgroup>\n"; $options .= "</optgroup>\n";
} }