Add a "Presented by: " to the awards ceremony script

Closes Bug #0000113
This commit is contained in:
james 2007-02-12 22:30:43 +00:00
parent 952a4d3c29
commit 8a009b71e1

View File

@ -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,