forked from science-ation/science-ation
Add a "Presented by: " to the awards ceremony script
Closes Bug #0000113
This commit is contained in:
parent
952a4d3c29
commit
8a009b71e1
@ -25,6 +25,7 @@
|
||||
$q=mysql_query("SELECT
|
||||
award_awards.id,
|
||||
award_awards.name,
|
||||
award_awards.presenter,
|
||||
award_awards.order AS awards_order,
|
||||
award_types.type
|
||||
FROM
|
||||
@ -44,6 +45,8 @@
|
||||
while($r=mysql_fetch_object($q))
|
||||
{
|
||||
$rep->heading("$r->name ($r->type)");
|
||||
if($r->presenter)
|
||||
$rep->addText(i18n("Presented by: %1",array($r->presenter)));
|
||||
|
||||
$pq=mysql_query("SELECT
|
||||
award_prizes.prize,
|
||||
|
Loading…
Reference in New Issue
Block a user