This repository has been archived on 2025-06-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
server/onyx/include/public/team.php
2013-10-26 08:59:59 +02:00

16 lines
172 B
PHP

<?php
if(!defined('ONYX')) exit;
try
{
$team = new Team($TEAM);
$template->assign("team", $team);
return "public/team";
}
catch(Exception $e)
{
return "404";
}