Revision 370, 434 bytes
(checked in by kovell, 14 years ago)
|
- SQL queries optimised for speed and error protection.
- feed syndication optimised
- front page includes optional clock and optional kill/loss display
- mysqli support added
- transaction protection of kills added where supported (mysqli and InnoDB)
- summary tables and contracts show total destroyed value instead of ship value
- html errors reduced
- related kill calculation improved
- query caching errors reduced
- minor bugfixes
- Smarty 2.6.25 added
- apoc fitting mod added and modded
- code optimisations
- code comments added (doxygen format)
- conflicting mods are now identified
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | /* |
---|
4 | * Request forwarder, look at common/index.php for the action and license |
---|
5 | */ |
---|
6 | |
---|
7 | @error_reporting(E_ALL ^ E_NOTICE); |
---|
8 | if (PHP_OS === 'Windows') |
---|
9 | { |
---|
10 | @ini_set('include_path', ini_get('include_path').';.\\common\\includes'); |
---|
11 | } |
---|
12 | else |
---|
13 | { |
---|
14 | @ini_set('include_path', ini_get('include_path').':./common/includes'); |
---|
15 | } |
---|
16 | |
---|
17 | if(!ini_get('zlib.output_compression')) ob_start("ob_gzhandler"); |
---|
18 | |
---|
19 | include('common/index.php'); |
---|
20 | ?> |
---|