diff --git a/README.md b/README.md index f80b6fa96..f7d97b037 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,18 @@ Licenses * Traq is released under the GNU GPL license, _version 3 only_. * Avalon is released under the GNU Lesser GPL license, _version 3 only_. -* Ant is released under the GNU Lesser GPL license, _version 3 only_. +* Nanite is released under the GNU Lesser GPL license, _version 3 only_. ### Terminated Licenses ### * **devxdev / Devon Hazelett**: Files, classes and functions were taken and completely stripped of copyright, warranty and code comments then used in the "Soule Framework", licenses _permanently_ terminated. +Contributors +------------ + +A list of people who contribute or have contributed to Traq can be found on [Github](https://github.com/nirix/traq/graphs/contributors). + Credits ------- diff --git a/install/bootstrap.php b/install/bootstrap.php index 66d60e13d..aed81b2cc 100644 --- a/install/bootstrap.php +++ b/install/bootstrap.php @@ -27,7 +27,7 @@ Autoloader::register_namespace('avalon', SYSPATH); Autoloader::register(); -require 'ant.php'; +require 'nanite.php'; require SYSPATH . '/libs/fishhook.php'; require '../system/models/user.php'; require 'common.php'; diff --git a/install/ant.php b/install/nanite.php similarity index 95% rename from install/ant.php rename to install/nanite.php index e92a7751f..b4b25eff7 100644 --- a/install/ant.php +++ b/install/nanite.php @@ -18,35 +18,35 @@ */ /** - * Shortcut to the Ant::get() method. + * Shortcut to the Nanite::get() method. * * @param string $route * @param function $function */ function get($route, $function) { - Ant::get($route, $function); + Nanite::get($route, $function); } /** - * Shortcut to the Ant::post() method. + * Shortcut to the Nanite::post() method. * * @param string $route * @param function $function */ function post($route, $function) { - Ant::post($route, $function); + Nanite::post($route, $function); } /** - * Ant is a tiny PHP router. + * Nanite is a tiny PHP router. * * @copyright Copyright (c) 2012 Jack P. * @license GNU Lesser General Public License * @version 3.0 */ -class Ant +class Nanite { private static $request_uri;