From 659bc1106656d47307425abc87adcd9bcf3e0849 Mon Sep 17 00:00:00 2001 From: james Date: Fri, 2 Mar 2007 15:02:14 +0000 Subject: [PATCH] Put the email address in the registration list, so when someone calls and says "i never got my registration number!" you can easily look it up for them! Sorry this didnt get into 2.0.10, im going to update everyones version with this patch anyways --- admin/registration_list.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/admin/registration_list.php b/admin/registration_list.php index 4420725..f79cc11 100644 --- a/admin/registration_list.php +++ b/admin/registration_list.php @@ -97,6 +97,7 @@ else $wherestatus=""; $q=mysql_query("SELECT registrations.id AS reg_id, registrations.num AS reg_num, registrations.status, + registrations.email, projects.title, projects.projectnumber, projects.projectcategories_id, @@ -117,6 +118,7 @@ else $wherestatus=""; echo ""; if($_GET['showstatus']) $stat="&showstatus=".$_GET['showstatus']; echo "".i18n("Status").""; + echo "".i18n("Email Address").""; echo "".i18n("Reg Num").""; echo "".i18n("Proj Num").""; echo "".i18n("Project Title").""; @@ -148,6 +150,7 @@ else $wherestatus=""; echo ""; echo "$status_text"; + echo "$r->email"; echo "$r->reg_num"; echo "$r->projectnumber"; echo "reg_id\">$r->title";