From 4185558e4b49f2e45b49e076b9f1a63cd9dad5b0 Mon Sep 17 00:00:00 2001 From: james Date: Tue, 24 Mar 2009 18:21:26 +0000 Subject: [PATCH] If there's a regfee, and we show a red * then there's no point showing "complete" becuase everyone is "complete" and only some will have a red star. saves bandwidth and real-estate on the page. --- confirmed_participants.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/confirmed_participants.php b/confirmed_participants.php index 6849457..80b0c18 100644 --- a/confirmed_participants.php +++ b/confirmed_participants.php @@ -102,12 +102,11 @@ //no need to output the status if we dont have a reg fee, becuase status is either 'complete' or 'payment pending' but if we dont have a regfee it can never be payment pending, so thus, it must be complete! $statusstar=""; - if($config['regfee']>0) - { + if($config['regfee']>0) { if($r->status=="paymentpending") $statusstar="*"; - $status_text=i18n("Complete"); +// $status_text=i18n("Complete"); } else $status_text="";