Skip to content
Snippets Groups Projects
Commit 02e0fac7 authored by Florian Henry's avatar Florian Henry
Browse files

"or" into if instead of ||

parent 0e2497e7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment