From fec9ce09c191ddd4296582a2b5018613f38ca7b3 Mon Sep 17 00:00:00 2001 From: Karl Burkhart Date: Thu, 17 Feb 2011 13:56:50 +0000 Subject: [PATCH] --- wawi/wawi_autocomplete.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/wawi/wawi_autocomplete.php b/wawi/wawi_autocomplete.php index 312525700..76888c3d1 100644 --- a/wawi/wawi_autocomplete.php +++ b/wawi/wawi_autocomplete.php @@ -74,10 +74,10 @@ // Bestellung Tags case 'tags': - $bestell_id = $_REQUEST['bestell_id']; + // $bestell_id = $_REQUEST['bestell_id']; $tag_search=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:'')); - if (is_null($bestell_id) || $tag_search=='') - exit(); + // if (is_null($bestell_id) || $tag_search=='') + // exit(); $tags = new tags(); if (!$tags->getAll()) exit($tags->errormsg."\n"); @@ -87,10 +87,10 @@ // Bestelldetail Tags case 'detail_tags': - $detail = $_REQUEST['detail_id']; + // $detail = $_REQUEST['detail_id']; $tag_search=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:'')); - if (is_null($detail) || $tag_search=='') - exit(); + //if (is_null($detail) || $tag_search=='') + // exit(); $tags = new tags(); if (!$tags->getAll()) exit($tags->errormsg."\n");