This commit is contained in:
Karl Burkhart
2011-02-17 13:56:50 +00:00
parent 4afa1ffdee
commit fec9ce09c1
+6 -6
View File
@@ -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");