From 1b73c32ec35e68f572a154ae949aab5956cb2aed Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Thu, 3 May 2012 12:44:46 +0200 Subject: [PATCH] add urldecode() of object DN in GET request --- public_html/modify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/modify.php b/public_html/modify.php index 644ed1e9..08fb4dfa 100644 --- a/public_html/modify.php +++ b/public_html/modify.php @@ -41,7 +41,7 @@ if(LSsession :: startLSsession()) { $dn = $_POST['LSform_objectdn']; } else if (isset($_GET['dn'])) { - $dn = $_GET['dn']; + $dn = urldecode($_GET['dn']); } if ((isset($dn)) && (isset($LSobject)) ) {