forked from science-ation/science-ation
Tweak signature page
This commit is contained in:
parent
056d4d23bb
commit
3360fe95eb
@ -31,7 +31,6 @@
|
||||
$reg=getRegistration($u['registrations_id']);
|
||||
|
||||
send_header("Participant Registration - Summary");
|
||||
echo nl2br(print_r($reg,true));
|
||||
|
||||
//only display the named greeting if we have their name
|
||||
if($u['firstname']) {
|
||||
|
@ -97,12 +97,12 @@ $pdf->AddPage();
|
||||
");
|
||||
$projectinfo=mysql_fetch_object($q);
|
||||
|
||||
$qstr="SELECT firstname, lastname, grade, schools_id
|
||||
$qstr="SELECT users.id,firstname, lastname, grade, schools_id
|
||||
FROM users
|
||||
JOIN user_roles ON users.id=user_roles.users_id
|
||||
JOIN roles ON user_roles.roles_id=roles.id
|
||||
WHERE registrations_id='".$registration_id."'
|
||||
AND conferences_id='".$conference['id']."'
|
||||
AND users.conferences_id='".$conference['id']."'
|
||||
AND roles.type='participant'";
|
||||
// echo "qstr=[$qstr]";
|
||||
$q=mysql_query($qstr);
|
||||
@ -116,7 +116,7 @@ $pdf->AddPage();
|
||||
|
||||
$plural = (count($studentinfoarray)>1) ? 's' : '';
|
||||
|
||||
$pdf->WriteHTML("<h3>".i18n('Registration Summary')."</h3>
|
||||
$pdf->WriteHTML("<br /><h3>".i18n('Registration Summary')."</h3>
|
||||
<p>
|
||||
".i18n('Registration Number').": $registration_number <br/>
|
||||
".i18n('Project Title').": {$projectinfo->title} <br/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user