From d4e604fed5997d3801814dcb5cdcc10283a757f0 Mon Sep 17 00:00:00 2001 From: james Date: Mon, 3 Nov 2008 05:18:23 +0000 Subject: [PATCH] Don't show dates that aren't set on the front-end --- important_dates.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/important_dates.php b/important_dates.php index 40dadd25..8715316d 100644 --- a/important_dates.php +++ b/important_dates.php @@ -31,11 +31,10 @@ while($r=mysql_fetch_object($q)) { $trclass = ($trclass == 'odd') ? 'even' : 'odd'; - if($r->date == '0000-00-00 00:00:00') - $d = i18n("not specified"); - else + if($r->date != '0000-00-00 00:00:00') { $d = format_datetime($r->udate); - echo "".i18n($r->description)."$d"; + echo "".i18n($r->description)."$d"; + } } echo "";