diff --git a/htdocs/projet/commandes.php b/htdocs/projet/commandes.php
index 502a0f79647..e716aaebcdc 100644
--- a/htdocs/projet/commandes.php
+++ b/htdocs/projet/commandes.php
@@ -18,7 +18,6 @@
*
* $Id$
* $Source$
- *
*/
/**
@@ -111,7 +110,7 @@ if (sizeof($commandes)>0 && is_array($commandes))
$total = $total + $commande->total_ht;
}
- print '
| '.$i.' '.$langs->trans("Orders").' | ';
+ print '
| '.$i.' '.$langs->trans("Orders").' | ';
print ''.$langs->trans("TotalHT").': '.price($total).' | ';
print ''.$langs->trans("Currency".$conf->monnaie).' |
';
print "";
@@ -119,6 +118,10 @@ if (sizeof($commandes)>0 && is_array($commandes))
print '';
+// Juste pour éviter bug IE qui réorganise mal div précédents si celui-ci absent
+print '';
+print '
';
+
$db->close();
llxFooter('$Date$ - $Revision$');
diff --git a/htdocs/projet/facture.php b/htdocs/projet/facture.php
index ee03ae95a30..998caf93d4c 100644
--- a/htdocs/projet/facture.php
+++ b/htdocs/projet/facture.php
@@ -18,7 +18,6 @@
*
* $Id$
* $Source$
- *
*/
/**
@@ -116,7 +115,7 @@ if (sizeof($factures)>0 && is_array($factures))
$total = $total + $facture->total_ht;
}
- print '| '.$i.' '.$langs->trans("Bills").' | ';
+ print '
| '.$i.' '.$langs->trans("Bills").' | ';
print ''.$langs->trans("TotalHT").' : '.price($total).' | ';
print ''.$langs->trans("Currency".$conf->monnaie).' |
';
print "";
@@ -124,6 +123,10 @@ if (sizeof($factures)>0 && is_array($factures))
print '';
+// Juste pour éviter bug IE qui réorganise mal div précédents si celui-ci absent
+print '';
+print '
';
+
$db->close();
llxFooter('$Date$ - $Revision$');
diff --git a/htdocs/projet/fiche.php b/htdocs/projet/fiche.php
index 6f7952ac5f6..e36b00dc87f 100644
--- a/htdocs/projet/fiche.php
+++ b/htdocs/projet/fiche.php
@@ -18,14 +18,13 @@
*
* $Id$
* $Source$
- *
*/
/**
- \file htdocs/projet/fiche.php
- \ingroup projet
- \brief Fiche projet
- \version $Revision$
+ \file htdocs/projet/fiche.php
+ \ingroup projet
+ \brief Fiche projet
+ \version $Revision$
*/
require("./pre.inc.php");
@@ -210,9 +209,10 @@ if ($_GET["action"] == 'create' && $user->rights->projet->creer)
/*
* Boutons actions
*/
+ print '';
+
if ($user->rights->projet->creer == 1)
{
- print '
';
if ($_GET["action"] != "edit")
{
@@ -220,9 +220,10 @@ if ($_GET["action"] == 'create' && $user->rights->projet->creer)
print '
'.$langs->trans("Delete").'';
}
- print "
";
}
+ print "
";
+
}
$db->close();
diff --git a/htdocs/projet/propal.php b/htdocs/projet/propal.php
index 21e1819dbf8..d493140f448 100644
--- a/htdocs/projet/propal.php
+++ b/htdocs/projet/propal.php
@@ -110,13 +110,17 @@ if (sizeof($propales)>0 && is_array($propales))
$total = $total + $propale->price;
}
- print '| '.$i.' '.$langs->trans("Proposal").' | ';
+ print '
| '.$i.' '.$langs->trans("Proposal").' | ';
print ''.$langs->trans("TotalHT").': '.price($total).' | ';
print ''.$langs->trans("Currency".$conf->monnaie).' |
';
}
print '';
+// Juste pour éviter bug IE qui réorganise mal div précédents si celui-ci absent
+print '';
+print '
';
+
$db->close();
llxFooter('$Date$ - $Revision$');