. # Copyright (C) 2007-2008 CodingTeam (See AUTHORS and THANKS for details) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, version 3 only. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # # ***** END LICENSE BLOCK ***** // Disable notice errors error_reporting(E_ALL ^ E_NOTICE); // Set Unicode (utf-8) as default encoding for string manipulation mb_internal_encoding('UTF-8'); // Include the CodingTeam class $basedir = dirname(__FILE__); require($basedir.'/inc/classes/codingteam.php'); // Start CodingTeam! $codingteam = new CodingTeam($basedir); ?>