This commit is contained in:
parent
b429513ab4
commit
ebe969c7de
@ -37,12 +37,11 @@ class Tournaments extends Page {
|
||||
function event()
|
||||
{
|
||||
$tid = $this->params[0];
|
||||
$t = new Tournament();
|
||||
|
||||
if(!$t->isMyEvent($tid))
|
||||
return 'Not your event :(';
|
||||
|
||||
$t->load($tid);
|
||||
$t = new Tournament();
|
||||
if($t->exists($tid))
|
||||
$t->load($tid);
|
||||
else
|
||||
return partial('error.html', ['errorTitle' => 'Error', 'errorMessage' => 'Dieses Turnier existiert nicht']);
|
||||
|
||||
$this->set('admin',$t->amIAdmin($tid));
|
||||
$this->set('joined',$t->isMyEvent($tid));
|
||||
|
Reference in New Issue
Block a user