Commit 2bf4437caf7aaa7671487447e219dbd20dbe6643
1 parent
67c039ce
Exists in
master
and in
7 other branches
Correção no valor da variável que define o log de transações
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
admin/php/conexao.php
... | ... | @@ -56,6 +56,9 @@ if(!isset($esquemaadmin)){ |
56 | 56 | if($esquemaadmin != ""){ |
57 | 57 | $esquemaadmin = str_replace(".","",$esquemaadmin)."."; |
58 | 58 | } |
59 | +if(!isset($logTransacoes)){ | |
60 | + $logTransacoes = false; | |
61 | +} | |
59 | 62 | // |
60 | 63 | //indica se deve ser feita a conversão para UTF8 ao gravar os dados |
61 | 64 | // |
... | ... | @@ -96,4 +99,4 @@ if($conexaoadmin == ""){ |
96 | 99 | else |
97 | 100 | include($conexaoadmin); |
98 | 101 | |
99 | -?> | |
100 | 102 | \ No newline at end of file |
103 | +?> | ... | ... |