diff --git a/htdocs/bookmarks/list.php b/htdocs/bookmarks/list.php
index a299da1c3ee..d2d3812400d 100644
--- a/htdocs/bookmarks/list.php
+++ b/htdocs/bookmarks/list.php
@@ -408,7 +408,7 @@ while ($i < $imaxinloop) {
print "\n";
// Target
- print '
';
+ print ' | ';
if ($obj->target == 0) {
print $langs->trans("BookmarkTargetReplaceWindowShort");
}
@@ -418,7 +418,7 @@ while ($i < $imaxinloop) {
print " | \n";
// Author
- print '';
+ print ' | ';
if ($obj->fk_user > 0) {
if (empty($conf->cache['users'][$obj->fk_user])) {
$tmpuser = new User($db);
|