From 69e12efacca9d94c023fc58e83a0831f6cb9dc83 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 31 May 2011 20:37:37 +0000 Subject: [PATCH] Fix: Fix status parameter --- htdocs/product/ajaxproducts.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/htdocs/product/ajaxproducts.php b/htdocs/product/ajaxproducts.php index 2eea437723c..829e470ac2d 100644 --- a/htdocs/product/ajaxproducts.php +++ b/htdocs/product/ajaxproducts.php @@ -1,7 +1,7 @@ * Copyright (C) 2005-2009 Regis Houssin - * Copyright (C) 2007-2010 Laurent Destailleur + * Copyright (C) 2007-2011 Laurent Destailleur * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -64,7 +64,9 @@ $idprod = $match[0]; if (! isset($_GET['idprod']) && ! isset($_GET[$idprod]) && ! isset($_GET['idprodfournprice'])) return; // When used from jQuery, the search term is added as GET param "term". -$searchkey=($_GET[$idprod]?$_GET[$idprod]:($_GET['idprod']?$_GET['idprod']:$_GET['idprodfournprice'])); +$searchkey=$_GET[$idprod]; +if (empty($searchkey)) $searchkey=$_GET['idprod']; +if (empty($searchkey)) $searchkey=$_GET['idprodfournprice']; $outjson=isset($_GET['outjson'])?$_GET['outjson']:0; // Get list of product. @@ -80,7 +82,7 @@ if (empty($_GET['mode']) || $_GET['mode'] == 1) } if ($_GET['mode'] == 2) { - $arrayresult=$form->select_produits_fournisseurs_do($_GET["socid"],"",$_GET["htmlname"],$_GET["type"],"",$searchkey,$statut,$outjson); + $arrayresult=$form->select_produits_fournisseurs_do($_GET["socid"],"",$_GET["htmlname"],$_GET["type"],"",$searchkey,$status,$outjson); } $db->close();