Revision 185, 254 bytes
(checked in by exi, 16 years ago)
|
Added stripslashes to the mail_forward eventhandler.
Changed db.php to check for strict type of define.
Reworked large chunks of the battle overview to reflect the actual count of lost/killed ships which was really mind numbing.
|
Line | |
---|
1 | <?php |
---|
2 | require_once('config.php'); |
---|
3 | require_once('globals.php'); |
---|
4 | require_once('php_compat.php'); |
---|
5 | |
---|
6 | if (defined('DB_USE_QCACHE') && DB_USE_QCACHE === true) |
---|
7 | { |
---|
8 | require_once('class.db_cache.php'); |
---|
9 | } |
---|
10 | else |
---|
11 | { |
---|
12 | require_once('class.db.php'); |
---|
13 | } |
---|
14 | ?> |
---|