Commit e98bd3583105ffd9192e415d574e3b19fb993028

Authored by Edmar Moretti
1 parent e0bc41ee
Exists in master

Correção no ordenamento de camadas https://softwarepublico.gov.br/gitlab/i3geo/i3geo/issues/115

Showing 1 changed file with 3 additions and 2 deletions   Show diff stats
classesphp/classe_temas.php
@@ -412,9 +412,10 @@ lista - lista com a nova ordem para os temas. A lista contém os nomes dos @@ -412,9 +412,10 @@ lista - lista com a nova ordem para os temas. A lista contém os nomes dos
412 } 412 }
413 } 413 }
414 else{ 414 else{
415 - $g = strtoupper($la->group); 415 + //$g = strtoupper($la->group);
416 $n = strtoupper($la->name); 416 $n = strtoupper($la->name);
417 - if ((strtoupper($l) == $n) || (strtoupper($l) == $g)){ 417 + //if ((strtoupper($l) == $n) || (strtoupper($l) == $g)){
  418 + if (strtoupper($l) == $n){
418 $novaordem[] = $i; 419 $novaordem[] = $i;
419 } 420 }
420 } 421 }