Skip to content

Commit

Permalink
Merge pull request #3 from Net-Logic/dev
Browse files Browse the repository at this point in the history
remove superfluous br
  • Loading branch information
frederic34 authored Dec 4, 2023
2 parents 72ce94e + fbaf757 commit b124458
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions class/actions_easytooltip.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ public function getTooltipContent($parameters, &$object, &$action, $hookmanager)
$langs->load('orders');
$static_order = new Commande($this->db);
$static_customer = new Societe($this->db);
$tooltip = '<br>';
$tooltip = '';
// $tooltip = '<br>';
$tooltip .= '<table class="noborder centpercent">';
$tooltip .= '<tr class="liste_titre">';
$tooltip .= '<th>' . $langs->trans("LastCustomerOrders") . '</th>';
Expand Down Expand Up @@ -147,7 +148,8 @@ public function getTooltipContent($parameters, &$object, &$action, $hookmanager)
$langs->load('orders');
$static_order = new CommandeFournisseur($this->db);
$static_customer = new Societe($this->db);
$tooltip = '<br>';
$tooltip = '';
// $tooltip = '<br>';
$tooltip .= '<table class="noborder centpercent">';
$tooltip .= '<tr class="liste_titre">';
$tooltip .= '<th>' . $langs->trans("LastSupplierOrders") . '</th>';
Expand Down Expand Up @@ -194,8 +196,8 @@ public function getTooltipContent($parameters, &$object, &$action, $hookmanager)
$num = $this->db->num_rows($resql);
$total = 0;
$i = 0;

$tooltip = '<br>';
$tooltip = '';
// $tooltip = '<br>';
$tooltip .= '<table class="noborder centpercent">';
$tooltip .= '<tr class="liste_titre">';
$tooltip .= '<th>' . $langs->trans("Warehouse") . '</th>';
Expand Down

0 comments on commit b124458

Please sign in to comment.