From aab7d0b3cca31a59f7ca3cf05e990d47bc521414 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sun, 20 Feb 2011 22:47:01 +1100 Subject: [PATCH] Invalid HTML -> Valid HTML --- inc/display.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/inc/display.php b/inc/display.php index fa8da048..051a7091 100644 --- a/inc/display.php +++ b/inc/display.php @@ -169,15 +169,15 @@ // Trip . (!empty($this->trip) ? ' '.$this->trip.'':''); + // End email + if(!empty($this->email)) + $built .= ''; + // IP Address if($this->mod && $this->mod['type'] >= $config['mod']['show_ip']) { $built .= ' [' . $this->ip . ']'; } - // End email - if(!empty($this->email)) - $built .= ''; - // Date/time $built .= ' ' . date($config['post_date'], $this->time); @@ -342,15 +342,15 @@ // Trip . (!empty($this->trip) ? ' '.$this->trip.'':''); + // End email + if(!empty($this->email)) + $built .= ''; + // IP Address if($this->mod && $this->mod['type'] >= $config['mod']['show_ip']) { $built .= ' [' . $this->ip . ']'; } - // End email - if(!empty($this->email)) - $built .= ''; - // Date/time $built .= ' ' . date($config['post_date'], $this->time);