server/onyx/include/team/team.php

17 lines
171 B
PHP
Raw Normal View History

2013-10-22 06:16:02 +00:00
<?php
if(!defined('ONYX')) exit;
try
{
$team = new Team($TEAM);
$template->assign("team", $team);
2013-10-26 06:56:06 +00:00
return "teams/team";
2013-10-22 06:16:02 +00:00
}
2013-10-26 19:01:49 +00:00
catch(Exception $e)
2013-10-22 06:16:02 +00:00
{
return "404";
}