projects
/
ldapsaisie.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb5f5d7
)
add urldecode() of object DN in GET request
author
Benjamin Renard
<brenard@easter-eggs.com>
Thu, 3 May 2012 10:44:46 +0000
(12:44 +0200)
committer
Benjamin Renard
<brenard@easter-eggs.com>
Thu, 3 May 2012 10:44:46 +0000
(12:44 +0200)
public_html/modify.php
patch
|
blob
|
history
diff --git
a/public_html/modify.php
b/public_html/modify.php
index
644ed1e
..
08fb4df
100644
(file)
--- 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)) ) {