From 4e88c55e76a1bbcbf99b603da83b605519145898 Mon Sep 17 00:00:00 2001 From: erics Date: Sat, 6 Nov 2004 06:54:31 +0000 Subject: [PATCH] popurop -> popuprop --- htdocs/product/popuprop.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/htdocs/product/popuprop.php b/htdocs/product/popuprop.php index 3f58c85311e..2e2b3720e42 100644 --- a/htdocs/product/popuprop.php +++ b/htdocs/product/popuprop.php @@ -1,6 +1,7 @@ * Copyright (C) 2004 Laurent Destailleur + * Copyright (C) 2004 Eric Seigne * * 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 @@ -38,14 +39,14 @@ $offset = $limit * $page ; llxHeader(); -print_barre_liste("Liste des produits par popularité dans les propositions commerciales", $page, "popurop.php"); +print_barre_liste("Liste des produits par popularité dans les propositions commerciales", $page, "popuprop.php"); print ''; print ""; -print_liste_field_titre($langs->trans("Ref"),"popurop.php", "p.ref"); -print_liste_field_titre($langs->trans("Label"),"popurop.php", "p.label"); -print_liste_field_titre("Nb. de proposition","popurop.php", "c","","",'align=\"center\"'); +print_liste_field_titre($langs->trans("Ref"),"popuprop.php", "p.ref"); +print_liste_field_titre($langs->trans("Label"),"popuprop.php", "p.label"); +print_liste_field_titre("Nb. de proposition","popuprop.php", "c","","",'align=\"center\"'); print "\n"; $sql = "select p.rowid, p.label, p.ref, count(*) as c from ".MAIN_DB_PREFIX."propaldet as pd, ".MAIN_DB_PREFIX."product as p where p.rowid = pd.fk_product group by (p.rowid)";