*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville 2002-12-21 18:53:52 +00:00
parent 4a7b38cba8
commit 2b05ee1de8
2 changed files with 4 additions and 3 deletions

View File

@ -57,7 +57,7 @@
</tr>
<tr id="montant">
<input type="text" name="montant" size="10" /> euros
<input type="text" name="montant" size="10" />
</tr>
<tr id="commentaire">

View File

@ -30,8 +30,8 @@ if (file_exists ($thermlib))
*/
$conf = new Conf();
$db = new Db();
$dontherm = new Don($db);
$dbt = new Db();
$dontherm = new Don($dbt);
$actualValue = $dontherm->sum_actual();
$pendingValue = $dontherm->sum_pending();
@ -39,5 +39,6 @@ if (file_exists ($thermlib))
print moneyMeter($actualValue, $pendingValue, $intentValue);
$dbt->close();
}
?>