Skip to content

Commit

Permalink
Fix phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Mar 11, 2018
1 parent 6da3fbe commit 6ac0708
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions htdocs/ticketsup/class/actions_ticketsup.class.php
Expand Up @@ -774,7 +774,7 @@ private function newMessage($user, &$action)
$message = $message_intro . $message;

// Add signature
$message .= '<br />' . $message_signature;
$message .= '<br>' . $message_signature;

if (!empty($this->dao->origin_email)) {
$sendto[] = $this->dao->origin_email;
Expand Down Expand Up @@ -1118,7 +1118,7 @@ public function viewTimelineTicketLogs($show_user = true)
$userstat = new User($this->db);
$res = $userstat->fetch($arraylogs['fk_user_create']);
if ($res) {
print '<br /><small>'.$userstat->getNomUrl(1).'</small>';
print '<br><small>'.$userstat->getNomUrl(1).'</small>';
}
}
}
Expand Down Expand Up @@ -1296,11 +1296,11 @@ public function viewTicketTimelineMessages($show_private, $show_user = true)
$userstat = new User($this->db);
$res = $userstat->fetch($arraymsgs['fk_user_action']);
if ($res) {
print '<br />';
print '<br>';
print $userstat->getNomUrl(1);
}
} else {
print '<br />';
print '<br>';
print $langs->trans('Customer');
}
}
Expand Down Expand Up @@ -1496,7 +1496,7 @@ public function viewStatusActions()
// Sort results to be similar to status object list
sort($exclude_status);

//print '<br /><div>';
//print '<br><div>';
foreach ($this->dao->statuts_short as $status => $statut_label) {
if (!in_array($status, $exclude_status)) {
print '<div class="tagtd">';
Expand All @@ -1506,7 +1506,7 @@ public function viewStatusActions()
print '</div>';
}
}
print '</div></div><br />';
print '</div></div><br>';
}


Expand Down
2 changes: 1 addition & 1 deletion htdocs/ticketsup/tpl/linkedobjectblock.tpl.php
Expand Up @@ -31,7 +31,7 @@
$langs = $GLOBALS['langs'];
$langs->load('ticketsup@ticketsup');
$linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
echo '<br />';
echo '<br>';
print_titre($langs->trans('RelatedTickets'));
?>
<table class="noborder" width="100%">
Expand Down

0 comments on commit 6ac0708

Please sign in to comment.