From 0868021bf5712da12fd19903d02210f25a573f5d Mon Sep 17 00:00:00 2001
From: Andreas Gohr <andi@splitbrain.org>
Date: Fri, 3 Feb 2006 16:39:45 +0100
Subject: [PATCH] fix special char ID handling

A given ID consisting of special chars only (either added manually in the URL
or in the search box) will be ignored correctly now.

darcs-hash:20060203153945-7ad00-60fc38b49604f45bb2ca912a9c76c619ad60ac44.gz
---
 inc/actions.php   | 3 ++-
 inc/pageutils.php | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/inc/actions.php b/inc/actions.php
index 315e35da8..eb43bb13f 100644
--- a/inc/actions.php
+++ b/inc/actions.php
@@ -27,7 +27,8 @@ function act_dispatch(){
   $ACT = act_clean($ACT);
 
   //check if searchword was given - else just show
-  if($ACT == 'search' && empty($QUERY)){
+  $s = cleanID($QUERY);
+  if($ACT == 'search' && empty($s)){
     $ACT = 'show';
   }
 
diff --git a/inc/pageutils.php b/inc/pageutils.php
index a6432619d..73be0a3a8 100644
--- a/inc/pageutils.php
+++ b/inc/pageutils.php
@@ -52,8 +52,8 @@ function getID($param='id',$clean=true){
     //strip leading slashes
     $id = preg_replace('!^/+!','',$id);
   }
-  if(empty($id) && $param=='id') $id = $conf['start'];
   if($clean) $id = cleanID($id);
+  if(empty($id) && $param=='id') $id = $conf['start'];
   
   return $id;
 }
-- 
GitLab