MegaGlest/source/masterserver/cleanUpServerList.php
Mark Vejvoda ee2c02610d - updated copyright headers is some files that had them missing
- added a new language string for battle end screen
2012-08-02 00:57:28 +00:00

19 lines
496 B
PHP

<?php
// Copyright (C) 2012 Mark Vejvoda, Titus Tscharntke and Tom Reynolds
// The Megaglest Team, under GNU GPL v3.0
// ==============================================================
// This script can be invoked directly by a cron job on a regular basis:
// /path/to/php -f /path/to/script.php
define( 'INCLUSION_PERMITTED', true );
require_once( 'config.php' );
require_once( 'functions.php' );
define( 'DB_LINK', db_connect() );
cleanupServerList();
db_disconnect( DB_LINK );
?>