Commit 7e839af666b15973e9fb3cd5cab823e9fcd42bfe
1 parent
a3c1fff6
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
admin/php/upgradebanco46_47.php
... | ... | @@ -104,14 +104,14 @@ foreach($tabelas as $tabela){ |
104 | 104 | if($_POST["mostraSoSQL"] != "on"){ |
105 | 105 | $q = $dbhw->query($tabela); |
106 | 106 | if($q){ |
107 | - echo "<br>Feito!!!<pre><br>"; | |
107 | + echo "<br>Feito!!!<br>"; | |
108 | 108 | } |
109 | 109 | else{ |
110 | - echo "<pre>Ocorreu algum problema na criação das tabelas. Tabelas que deveriam ter sido criadas:\n"; | |
110 | + echo "<br><br>Ocorreu algum problema na criação da tabela (ou já existe)<br> $tabela \n"; | |
111 | 111 | } |
112 | 112 | } |
113 | 113 | } |
114 | -echo "Tabelas:<br><br>"; | |
114 | +echo "<br><br>Tabelas:<br><br>"; | |
115 | 115 | foreach($tabelas as $tabela){ |
116 | 116 | if($drivename == "pgsql"){ |
117 | 117 | $tabela = str_replace("INTEGER PRIMARY KEY","SERIAL PRIMARY KEY NOT NULL",$tabela); | ... | ... |