Commit fcb630abd7941cdbb68c40871106651bb4d25bbe
1 parent
86d67fd8
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
classesphp/classe_menutemas.php
... | ... | @@ -56,7 +56,7 @@ $urli3geo - (opcional) url onde está o i3geo (p.ex. http://localhost/i3geo |
56 | 56 | */ |
57 | 57 | function __construct($map_file="",$perfil="",$locsistemas="",$locaplic="",$menutemas="",$urli3geo="") |
58 | 58 | { |
59 | - error_reporting(0); | |
59 | + error_reporting(E_ALL); | |
60 | 60 | $perfil = str_replace(" ",",",$perfil); |
61 | 61 | $this->perfil = explode(",",$perfil); |
62 | 62 | $this->locsistemas = $locsistemas; |
... | ... | @@ -708,6 +708,7 @@ nrss - (opcional) número de registros no rss que serão considerados |
708 | 708 | */ |
709 | 709 | function listaTags($rss="",$nrss="") |
710 | 710 | { |
711 | + include_once($this->locaplic."/admin/php/xml.php"); | |
711 | 712 | $tipo = ""; |
712 | 713 | //carrega os títulos e links do rss especificado |
713 | 714 | $noticiasRSS = array(); //guarda as notícias originais do RRS | ... | ... |