*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville
2002-05-29 15:28:31 +00:00
parent 8e3537b32d
commit 4e1a966bac
3 changed files with 35 additions and 11 deletions

View File

@@ -1,8 +1,5 @@
<?PHP
/* Copyright (C) 2000,2001 Rodolphe Quiedeville <rodolphe@quiedeville.org>
*
* $Id$
* $Source$
*
* 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
@@ -18,8 +15,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see http://www.gnu.org/
*/
/*
*
* $Id$
* $Source$
*
@@ -56,6 +52,20 @@ function print_barre_liste($titre,$page,$file) {
print '<a href="'.$file.'?page='.($page+1).'"><img alt="Page suivante" src="/theme/'.$conf->theme.'/img/1rightarrow.png" border="0"></a>';
print '</td></tr></table><p>';
}
/*
*
*
*/
function print_oui_non($value) {
if ($value) {
print '<option value="0">non';
print '<option value="1" selected>oui';
} else {
print '<option value="0" selected>non';
print '<option value="1">oui';
}
}
/*
*
*