Browse Source

Invalid HTML -> Valid HTML

pull/40/head
Savetheinternet 13 years ago
parent
commit
aab7d0b3cc
  1. 16
      inc/display.php

16
inc/display.php

@ -169,15 +169,15 @@
// Trip
. (!empty($this->trip) ? ' <span class="trip">'.$this->trip.'</span>':'');
// 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>]';
}
// End email
if(!empty($this->email))
$built .= '</a>';
// Date/time
$built .= ' ' . date($config['post_date'], $this->time);
@ -342,15 +342,15 @@
// Trip
. (!empty($this->trip) ? ' <span class="trip">'.$this->trip.'</span>':'');
// 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>]';
}
// End email
if(!empty($this->email))
$built .= '</a>';
// Date/time
$built .= ' ' . date($config['post_date'], $this->time);

Loading…
Cancel
Save