email <a> tag should end before the capcode begins
This commit is contained in:
parent
9e0d3ad5f9
commit
169215da52
@ -230,13 +230,11 @@
|
||||
' style="' . $config['custom_capcode'][$this->capcode][2] . '"'
|
||||
: '')
|
||||
. '>'.$this->trip.'</span>':'')
|
||||
// End email
|
||||
. (!empty($this->email)? '</a>' : '')
|
||||
// Capcode
|
||||
. (!empty($this->capcode) ? capcode($this->capcode) : '');
|
||||
|
||||
// End email
|
||||
if(!empty($this->email))
|
||||
$built .= '</a>';
|
||||
|
||||
// IP Address
|
||||
if($this->mod && $this->mod['type'] >= $config['mod']['show_ip']) {
|
||||
$built .= ' [<a style="margin:0;" href="?/IP/' . $this->ip . '">' . $this->ip . '</a>]';
|
||||
@ -415,13 +413,11 @@
|
||||
$built .= '<span class="name">' . $this->name . '</span>'
|
||||
// Trip
|
||||
. (!empty($this->trip) ? ' <span class="trip">'.$this->trip.'</span>':'')
|
||||
// End email
|
||||
. (!empty($this->email)? '</a>' : '')
|
||||
// Capcode
|
||||
. (!empty($this->capcode) ? capcode($this->capcode) : '');
|
||||
|
||||
// End email
|
||||
if(!empty($this->email))
|
||||
$built .= '</a>';
|
||||
|
||||
// IP Address
|
||||
if($this->mod && $this->mod['type'] >= $config['mod']['show_ip']) {
|
||||
$built .= ' [<a style="margin:0;" href="?/IP/' . $this->ip . '">' . $this->ip . '</a>]';
|
||||
|
Loading…
Reference in New Issue
Block a user