From 31207f3e8a0383a80c2e7f25c436d84a5b45113d Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 21 Feb 2004 13:55:55 +0000 Subject: [PATCH] Changement de l'ordre du menu. D'abord commande puis expedition (pour plus de logique). --- htdocs/expedition/pre.inc.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/htdocs/expedition/pre.inc.php b/htdocs/expedition/pre.inc.php index 7aa80f8b12e..7e1d2394d16 100644 --- a/htdocs/expedition/pre.inc.php +++ b/htdocs/expedition/pre.inc.php @@ -1,5 +1,6 @@ + * Copyright (C) 2004 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 @@ -40,11 +41,11 @@ function llxHeader($head = "", $title="", $help_url='', $form_search='', $author $menu = new Menu(); + $menu->add(DOL_URL_ROOT."/commande/", "Commandes"); + $menu->add(DOL_URL_ROOT."/expedition/", "Expeditions"); $menu->add_submenu(DOL_URL_ROOT."/expedition/liste.php", "Liste"); - $menu->add(DOL_URL_ROOT."/commande/", "Commandes"); - $menu->add(DOL_URL_ROOT."/expedition/stats/", "Statistiques"); left_menu($menu->liste, $help_url, $form_search, $author);