2
0
forked from Wavyzz/dolibarr

*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville
2002-12-21 16:49:33 +00:00
parent 2d7330bcca
commit e85da56c93

View File

@@ -243,7 +243,7 @@ function print_titre($titre) {
*
*
*/
function print_barre_liste($titre,$page,$file) {
function print_barre_liste($titre,$page,$file,$options='') {
global $conf;
print '<table width="100%" border="0" cellpadding="3" cellspacing="0">';
@@ -258,9 +258,9 @@ function print_barre_liste($titre,$page,$file) {
print '<td align="right">';
if ($page > 0)
{
print '<a href="'.$file.'?page='.($page-1).'"><img alt="Page pr<70>c<EFBFBD>dente" src="/theme/'.$conf->theme.'/img/1leftarrow.png" border="0"></a>';
print '<a href="'.$file.'?page='.($page-1).$options.'"><img alt="Page pr<70>c<EFBFBD>dente" src="/theme/'.$conf->theme.'/img/1leftarrow.png" border="0"></a>';
}
print '<a href="'.$file.'?page='.($page+1).'"><img alt="Page suivante" src="/theme/'.$conf->theme.'/img/1rightarrow.png" border="0"></a>';
print '<a href="'.$file.'?page='.($page+1).$options.'"><img alt="Page suivante" src="/theme/'.$conf->theme.'/img/1rightarrow.png" border="0"></a>';
print '</td></tr></table><p>';
}
/*