Skip to content

Commit

Permalink
Look and feel v21
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Nov 12, 2024
1 parent 062c769 commit aa138fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions htdocs/bookmarks/list.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/* Copyright (C) 2005-2022 Laurent Destailleur <[email protected]>
* Copyright (C) 2024 Alexandre Spangaro <[email protected]>
* Copyright (C) 2024 Frédéric France <[email protected]>
* Copyright (C) 2024 Frédéric France <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -415,12 +415,12 @@
$candelete = $permissiontodelete;

// Title
print '<td class="tdoverflowmax200" alt="'.dol_escape_htmltag($title).'">';
print '<td class="tdoverflowmax250" alt="'.dol_escape_htmltag($title).'">';
print dol_escape_htmltag($title);
print "</td>\n";

// Url
print '<td class="tdoverflowmax200">';
print '<td class="tdoverflowmax250">';
if (empty($linkintern)) {
print img_picto('', 'url', 'class="pictofixedwidth"');
print '<a class="" href="'.$obj->url.'"'.($obj->target ? ' target="newlink" rel="noopener"' : '').'>';
Expand All @@ -433,7 +433,7 @@
print "</td>\n";

// Target
print '<td class="tdoverflowmax100 center">';
print '<td class="tdoverflowmax125 center">';
if ($obj->target == 0) {
print $langs->trans("BookmarkTargetReplaceWindowShort");
}
Expand All @@ -443,7 +443,7 @@
print "</td>\n";

// Author
print '<td class="tdoverflowmax100 center">';
print '<td class="tdoverflowmax125 center">';
if ($obj->fk_user > 0) {
if (empty($conf->cache['users'][$obj->fk_user])) {
$tmpuser = new User($db);
Expand Down

0 comments on commit aa138fc

Please sign in to comment.