From ee975176e0a924b8cb36c7f4dfdb9d996685bdf8 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 17 Dec 2002 22:17:45 +0000 Subject: [PATCH] *** empty log message *** --- htdocs/lib/functions.inc.php3 | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/htdocs/lib/functions.inc.php3 b/htdocs/lib/functions.inc.php3 index df45a64d42a..637be7b2eeb 100644 --- a/htdocs/lib/functions.inc.php3 +++ b/htdocs/lib/functions.inc.php3 @@ -243,11 +243,20 @@ function print_titre($titre) { function print_barre_liste($titre,$page,$file) { global $conf; print ''; - print ''; + + if ($page > 0) + { + print ''; + } + else + { + print ''; + } print '
'.$titre.'
'.$titre.' - page '.($page+1).'
'.$titre.'
'; - if ($page > 0) { - print 'Page précédente'; - } + if ($page > 0) + { + print 'Page précédente'; + } print 'Page suivante'; print '

'; }