From 3ae6d6428064e34bc4643a6ba09c6ecbccaf3f34 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Wed, 21 Jul 2004 14:26:23 +0000 Subject: [PATCH] Gestion de l'aide en ligne --- htdocs/projet/pre.inc.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/projet/pre.inc.php b/htdocs/projet/pre.inc.php index a2be70959e5..064837dd9c3 100644 --- a/htdocs/projet/pre.inc.php +++ b/htdocs/projet/pre.inc.php @@ -1,5 +1,5 @@ +/* Copyright (C) 2001-2004 Rodolphe Quiedeville * * 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 @@ -23,19 +23,19 @@ require ("../main.inc.php"); require("./project.class.php"); - -function llxHeader($head = "", $urlp = "") { +function llxHeader($head = "", $title="", $help_url='') +{ /* * * */ - top_menu($head); + top_menu($head, $title); $menu = new Menu(); $menu->add(DOL_URL_ROOT."/projet/", "Projets"); - left_menu($menu->liste); + left_menu($menu->liste, $help_url); } ?>