*** 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>
<tr id="montant"> <tr id="montant">
<input type="text" name="montant" size="10" /> euros <input type="text" name="montant" size="10" />
</tr> </tr>
<tr id="commentaire"> <tr id="commentaire">

View File

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