diff --git a/htdocs/comm/propal/list.php b/htdocs/comm/propal/list.php
index 64e18262c78..c9e0e436a72 100644
--- a/htdocs/comm/propal/list.php
+++ b/htdocs/comm/propal/list.php
@@ -391,10 +391,20 @@ if ($result)
if ($total>0)
{
- $var=!$var;
- print '
| '.$langs->trans("Total HT").' | ';
- print ''.price($total).' | ';
- print ' |
';
+ if($num<$limit){
+ $var=!$var;
+ print '| '.$langs->trans("Total HT").' | ';
+ print ''.price($total).' | ';
+ print ' |
';
+ }
+ else
+ {
+ $var=!$var;
+ print '| '.$langs->trans("Total HT for this page").' | ';
+ print ''.price($total).' | ';
+ print ' |
';
+ }
+
}
print '';