From 9534e3549e96a5b0cf65a855283140229dfc6a91 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 10 Aug 2003 13:55:38 +0000 Subject: [PATCH] fixed edit link error --- lam/templates/domain.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lam/templates/domain.php b/lam/templates/domain.php index 2e87d975..43be866e 100644 --- a/lam/templates/domain.php +++ b/lam/templates/domain.php @@ -39,6 +39,8 @@ if (($_GET['action'] == "edit") || ($_GET['action'] == "new")) { // get possible suffixes $domsuff = $_SESSION['ldap']->search_units($_SESSION['config']->get_domainSuffix()); if ($_GET['action'] == "edit") { + // remove "\'" + $_GET['DN'] = str_replace("\\'", "", $_GET['DN']); // load attributes from domain for ($i = 0; $i < sizeof($domlist); $i++) { if ($domlist[$i]->dn == $_GET['DN']) {