server/onyx/include/public/team.php

17 lines
172 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);
return "public/team";
}
2013-10-26 06:59:59 +00:00
catch(Exception $e)
2013-10-22 06:16:02 +00:00
{
return "404";
}