2
0
forked from Wavyzz/dolibarr

"or" into if instead of ||

This commit is contained in:
Florian HENRY
2014-05-09 13:28:29 +02:00
parent 0e2497e710
commit 02e0fac79f

View File

@@ -2547,7 +2547,7 @@ function print_barre_liste($titre, $page, $file, $options='', $sortfield='', $so
if ($picto == 'setup') $picto='title.png';
if (!empty($conf->browser->ie) && $picto=='title.png') $picto='title.gif';
if ($num > $conf->liste_limit or $num == -1)
if (($num > $conf->liste_limit) || ($num == -1))
{
$nextpage = 1;
}