Skip to content
Snippets Groups Projects
Commit 2ea5087e authored by Rodolphe Quiedeville's avatar Rodolphe Quiedeville
Browse files

Correction bug de recherche

Remplacement de sf_ref par sref
parent 42141b90
No related branches found
No related tags found
No related merge requests found
<?php
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
/* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
......@@ -22,31 +22,17 @@
*/
/**
\file htdocs/product/index.php
\ingroup product
\brief Page accueil des produits et services
\version $Revision$
\file htdocs/product/index.php
\ingroup product
\brief Page accueil des produits et services
\version $Revision$
*/
require("./pre.inc.php");
$user->getrights('produit');
$langs->load("products");
if (!$user->rights->produit->lire)
accessforbidden();
if ($_POST["action"] == 'update')
{
$sql = "UPDATE ".MAIN_DB_PREFIX."product SET description='".$_POST["desc"]."' where rowid = ".$_POST["rowid"];
$db->query($sql);
}
/*
* Affichage page accueil
*
......@@ -68,7 +54,7 @@ print '<table class="noborder" width="100%">';
print "<tr class=\"liste_titre\">";
print '<td colspan="3">'.$langs->trans("Search").'</td></tr>';
print "<tr $bc[0]><td>";
print $langs->trans("Ref").' :</td><td><input class="flat" type="text" size="18" name="sf_ref"></td><td><input type="submit" class="button" value="'.$langs->trans("Search").'"></td></tr>';
print $langs->trans("Ref").' :</td><td><input class="flat" type="text" size="18" name="sref"></td><td><input type="submit" class="button" value="'.$langs->trans("Search").'"></td></tr>';
print "<tr $bc[0]><td>";
print $langs->trans("Label").':</td><td><input class="flat" type="text" size="18" name="snom"></td><td><input type="submit" class="button" value="'.$langs->trans("Search").'"></td></tr>';
print "</table></form><br>";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment