diff --git a/htdocs/compta/bank/budget.php b/htdocs/compta/bank/budget.php
index 8a39404a3b9..d5c292a5aea 100644
--- a/htdocs/compta/bank/budget.php
+++ b/htdocs/compta/bank/budget.php
@@ -38,10 +38,10 @@ if ($_GET["bid"] == 0)
*/
print_titre("Budgets");
- print '
';
- print "";
+ print '';
+ print "";
echo '| Description | Nb | Total | Moyenne | ';
- print "
\n";
+ print "\n";
$sql = "SELECT sum(d.amount) as somme, count(*) as nombre, c.label, c.rowid ";
$sql .= " FROM ".MAIN_DB_PREFIX."bank_categ as c, ".MAIN_DB_PREFIX."bank_class as l, ".MAIN_DB_PREFIX."bank as d";
@@ -96,10 +96,10 @@ else
print_titre("Budget : $budget_name");
- print '';
- print "";
+ print '';
+ print "";
echo '| Date | Description | Montant | | ';
- print "
\n";
+ print "\n";
$sql = "SELECT d.amount, d.label, ".$db->pdate("d.dateo")." as do, d.rowid";
$sql .= " FROM ".MAIN_DB_PREFIX."bank_class as l, ".MAIN_DB_PREFIX."bank as d";
diff --git a/htdocs/compta/bank/config.php b/htdocs/compta/bank/config.php
index 98d176e8ec8..043327fd307 100644
--- a/htdocs/compta/bank/config.php
+++ b/htdocs/compta/bank/config.php
@@ -30,12 +30,12 @@ llxHeader();
print_titre("Configuration");
-print '';
-print "";
+print '';
+print "";
print "| id | Label | Description | ";
print "Number | ";
print "Clos | ";
-print "
\n";
+print "\n";
$sql = "SELECT rowid, label,number,bank,clos from ".MAIN_DB_PREFIX."bank_account";
@@ -61,27 +61,13 @@ if ($result)
print "
";
-print ''."";
-
-/*
- * Case 1
- */
-
-print '| ';
-print 'Nouveau compte | ';
-/*
- * Case 2
- */
-
-print '- | ';
-print '- | ';
-print '';
-print 'Catégories | ';
-print '- | ';
-
-print "
";
-
+print "
";
$db->close();
diff --git a/htdocs/compta/bank/index.php b/htdocs/compta/bank/index.php
index 5435aff3d06..457ede38a1d 100644
--- a/htdocs/compta/bank/index.php
+++ b/htdocs/compta/bank/index.php
@@ -134,19 +134,6 @@ for ($i = 0 ; $i < sizeof($accounts) ; $i++) {
print "
";
-print "
\n";
-
-if ($user->rights->banque->configurer) {
- print '
Nouveau compte';
- print '
Configurer';
-}
-if ($user->rights->banque->modifier) {
- print '
Catégories';
-}
-
-print "
";
-
-
$db->close();
llxFooter("Dernière modification $Date$ révision $Revision$");