aboutsummaryrefslogtreecommitdiff
path: root/view/relive-player.php
blob: 587286bcabfc8c671a48efb7a3c10a505cede145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

$relive = new Relive();
if(!$relive->isEnabled())
	throw new NotFoundException('Internal Relive is disabled');

$talk = $relive->getTalk(intval($_GET['id']));

echo $tpl->render(array(
	'page' => 'relive-player',
	'title' => 'Relive!',
	'talk' => $talk,

	'width' => 1024,
	'height' => 576,
));