]> git.sur5r.net Git - contagged/commitdiff
correct URL encoding on search redirects
authorAndreas Gohr <gohr@cosmocode.de>
Mon, 9 Jul 2007 08:26:00 +0000 (10:26 +0200)
committerAndreas Gohr <gohr@cosmocode.de>
Mon, 9 Jul 2007 08:26:00 +0000 (10:26 +0200)
When a search returns a ingle entry only a forward to this entry is made.
This patch makes sure the dn is correctly URL encoded to avoid problems with
special chars in the DN.

darcs-hash:20070709082600-6e07b-47d1d4cd22b257a4306fcf542a4002b230c18242.gz

index.php

index 33e7e9c0ce72bf1ec157f4250e7319d99c6c1038..e41237a56767aaa3517a7df551707844fc55b468 100644 (file)
--- a/index.php
+++ b/index.php
@@ -25,7 +25,7 @@
   $list = '';
   if(count($result)==1 && $_REQUEST['search']){
     //only one result on a search -> display page
-    header("Location: entry.php?dn=".$result[0]['dn']);
+    header("Location: entry.php?dn=".rawurlencode($result[0]['dn']));
     exit;
   }elseif(count($result)){
     $keys = array_keys($result);