diff --git a/htdocs/compta/bank/card.php b/htdocs/compta/bank/card.php
index a56d69138c1..a608a71bf7d 100644
--- a/htdocs/compta/bank/card.php
+++ b/htdocs/compta/bank/card.php
@@ -580,7 +580,7 @@ else
$linkback = ''.$langs->trans("BackToList").'';
-
+ $morehtmlref='';
dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
@@ -649,12 +649,6 @@ else
print '
| '.$langs->trans("BalanceMinimalDesired").' | ';
print ''.$object->min_desired.' |
';
- print '| '.$langs->trans("Web").' | ';
- if ($object->url) print '';
- print $object->url;
- if ($object->url) print '';
- print " |
\n";
-
// Accountancy code
print '| '.$langs->trans("AccountancyCode").' | ';
print '';
diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php
index a82a4c9e537..e2c6d67074a 100644
--- a/htdocs/core/class/commonobject.class.php
+++ b/htdocs/core/class/commonobject.class.php
@@ -522,7 +522,7 @@ abstract class CommonObject
}
if (! empty($this->url))
{
- $out.=dol_print_url($this->url,'',0,1);
+ $out.=dol_print_url($this->url,'_goout',0,1);
$outdone++;
}
if (! empty($conf->skype->enabled))
|