diff --git a/htdocs/blockedlog/admin/blockedlog_list.php b/htdocs/blockedlog/admin/blockedlog_list.php
index 49a4daa3b3f..7ce4ef04303 100644
--- a/htdocs/blockedlog/admin/blockedlog_list.php
+++ b/htdocs/blockedlog/admin/blockedlog_list.php
@@ -498,7 +498,7 @@ if (is_array($blocks))
print '
'.$object_link.' | ';
// Amount
- print ''.price($block->amounts).' | ';
+ print ''.price($block->amounts).' | ';
// Details link
print ''.img_info($langs->trans('ShowDetails')).' | ';
diff --git a/htdocs/bookmarks/list.php b/htdocs/bookmarks/list.php
index cca978d748b..e26b38c2513 100644
--- a/htdocs/bookmarks/list.php
+++ b/htdocs/bookmarks/list.php
@@ -179,7 +179,7 @@ if ($resql)
print ''.dol_print_date($db->jdate($obj->dateb),'day')." | ";
// Position
- print ''.$obj->position." | ";
+ print ''.$obj->position." | ";
// Actions
print '';
diff --git a/htdocs/categories/index.php b/htdocs/categories/index.php
index b7e99e50ca0..273a23f5b1e 100644
--- a/htdocs/categories/index.php
+++ b/htdocs/categories/index.php
@@ -178,7 +178,7 @@ foreach($fulltree as $key => $val)
//print_barre_liste('', 0, $_SERVER["PHP_SELF"], '', '', '', '', 0, 0, '', 0, $newcardbutton, '', 0, 1, 1);
print '';
-print '| '.$langs->trans("Categories").' | | ';
+print ' | | '.$langs->trans("Categories").' | | ';
if (! empty($conf->use_javascript_ajax))
{
print '';
diff --git a/htdocs/categories/viewcat.php b/htdocs/categories/viewcat.php
index 2092c6c52c5..37bf6ed60a3 100644
--- a/htdocs/categories/viewcat.php
+++ b/htdocs/categories/viewcat.php
@@ -278,7 +278,7 @@ else
{
print " ";
print "\n";
- print "| ".$langs->trans("SubCats").' | ';
+ print " | | ".$langs->trans("SubCats").' | ';
if ($user->rights->categorie->creer)
{
print "id.'&type='.$type)."'>";
@@ -366,7 +366,7 @@ if ($type == Categorie::TYPE_PRODUCT)
print " | \n";
print ''.$prod->label." | \n";
// Link to delete from category
- print '';
+ print ' | ';
$permission=0;
if ($type == Categorie::TYPE_PRODUCT) $permission=($user->rights->produit->creer || $user->rights->service->creer);
if ($type == Categorie::TYPE_SUPPLIER) $permission=$user->rights->societe->creer;
@@ -413,7 +413,7 @@ if ($type == Categorie::TYPE_SUPPLIER)
print $soc->getNomUrl(1);
print " | \n";
// Link to delete from category
- print '';
+ print ' | ';
$permission=0;
if ($type == Categorie::TYPE_PRODUCT) $permission=($user->rights->produit->creer || $user->rights->service->creer);
if ($type == Categorie::TYPE_SUPPLIER) $permission=$user->rights->societe->creer;
@@ -466,7 +466,7 @@ if($type == Categorie::TYPE_CUSTOMER)
print $soc->getNomUrl(1);
print " | \n";
// Link to delete from category
- print '';
+ print ' | ';
$permission=0;
if ($type == Categorie::TYPE_PRODUCT) $permission=($user->rights->produit->creer || $user->rights->service->creer);
if ($type == Categorie::TYPE_SUPPLIER) $permission=$user->rights->societe->creer;
@@ -519,7 +519,7 @@ if ($type == Categorie::TYPE_MEMBER)
print ' | '.$member->lastname." | \n";
print ''.$member->firstname." | \n";
// Link to delete from category
- print '';
+ print ' | ';
$permission=0;
if ($type == Categorie::TYPE_PRODUCT) $permission=($user->rights->produit->creer || $user->rights->service->creer);
if ($type == Categorie::TYPE_SUPPLIER) $permission=$user->rights->societe->creer;
@@ -569,7 +569,7 @@ if ($type == Categorie::TYPE_CONTACT)
print $contact->getNomUrl(1,'category');
print " | \n";
// Link to delete from category
- print '';
+ print ' | ';
$permission=0;
if ($type == Categorie::TYPE_PRODUCT) $permission=($user->rights->produit->creer || $user->rights->service->creer);
if ($type == Categorie::TYPE_SUPPLIER) $permission=$user->rights->societe->creer;
@@ -621,7 +621,7 @@ if ($type == Categorie::TYPE_ACCOUNT)
print ' | '.$account->bank." | \n";
print ''.$account->number." | \n";
// Link to delete from category
- print '';
+ print ' | ';
$permission=0;
if ($type == Categorie::TYPE_PRODUCT) $permission=($user->rights->produit->creer || $user->rights->service->creer);
if ($type == Categorie::TYPE_SUPPLIER) $permission=$user->rights->societe->creer;
@@ -672,7 +672,7 @@ if ($type == Categorie::TYPE_PROJECT)
print ' | '.$project->ref." | \n";
print ''.$project->title." | \n";
// Link to delete from category
- print '';
+ print ' | ';
$permission=0;
if ($type == Categorie::TYPE_PRODUCT) $permission=($user->rights->produit->creer || $user->rights->service->creer);
if ($type == Categorie::TYPE_SUPPLIER) $permission=$user->rights->societe->creer;
| | |