Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45f963b

Browse files
committed
2017-11-16 changes
1 parent fb918e1 commit 45f963b

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

docs/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### General changes
66

7-
* Requires a `Maniaplanet Dedicated Server` build 2017-08-04_11_00 or higher
7+
* Requires a `Maniaplanet Dedicated Server` build `2017-11-14_17_00 (Linux)` / `2017-11-15_16_36 (Windows)` or higher
88
* The logfile from UASECO has been renamed to `2017-06-15-uaseco-current.txt` or `2017-06-15-14-31-12-uaseco.txt` for older logfiles
99
* The `webrequest.php` uses an own logfile named `2017-06-15-webrequest-current.txt` or `2017-06-15-14-31-12-webrequest.txt` for older logfiles (thanks Shrike)
1010
* Changed `newinstall/webrequest.sh` and `newinstall/webrequest.bat` by adding an own logfile (thanks fiendy)
@@ -49,6 +49,7 @@
4949
* Fixed `strippling.xml` which holds the wrong map because of the too early call of the function `reportServerInfo()` at `loadingMap()` in `uaseco.php` (thanks hacki65)
5050
* Fixed multiple encoded special chars in windows and in Records Eyepiece (thanks hackie)
5151
* Fixed [UASECO Exception] Error returned: "Wrong setting type for `S_RespawnBehaviour`" [-1000] at GbxRemote::query() for method `SetModeScriptSettings` with arguments: (thanks hackie)
52+
* Fixed [PHP Warning] end() expects parameter 1 to be array, string given on line 1207 in file `plugins/plugin.checkpoints.php` (thanks endbase)
5253

5354

5455

plugins/plugin.checkpoints.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function __construct () {
5656

5757
$this->setAuthor('undef.de');
5858
$this->setVersion('1.0.1');
59-
$this->setBuild('2017-08-18');
59+
$this->setBuild('2017-11-16');
6060
$this->setCopyright('2014 - 2017 by undef.de');
6161
$this->setDescription('Stores Checkpoint timing and displays a Checkpoint Widget with timings from local/dedimania records.');
6262

@@ -1204,7 +1204,7 @@ public function handleCheckpointTracking ($login) {
12041204
}
12051205

12061206
// Check for valid checkpoints
1207-
if (!empty($current['Checks']) && !is_array($current['Checks']) && $current['Best'] == end($current['Checks'])) {
1207+
if (!empty($current['Checks']) && is_array($current['Checks']) && $current['Best'] == end($current['Checks'])) {
12081208
$this->checkpoints[$login]->best['finish'] = (int)$current['Best'];
12091209
$this->checkpoints[$login]->best['cps'] = $current['Checks'];
12101210
}

uaseco.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* ----------------------------------------------------------------------------------
2323
* Author: undef.de
24-
* Copyright: May 2014 - September 2017 by undef.de
24+
* Copyright: May 2014 - November 2017 by undef.de
2525
* ----------------------------------------------------------------------------------
2626
*
2727
* LICENSE: This program is free software: you can redistribute it and/or modify
@@ -44,12 +44,12 @@
4444
// Current project name, version and website
4545
define('UASECO_NAME', 'UASECO');
4646
define('UASECO_VERSION', '0.9.6');
47-
define('UASECO_BUILD', '2017-09-02');
47+
define('UASECO_BUILD', '2017-11-16');
4848
define('UASECO_WEBSITE', 'https://www.UASECO.org');
4949

5050
// Setup required official dedicated server build, Api-Version and PHP-Version
51-
define('MANIAPLANET_BUILD_POSIX', '2017-08-30_14_00');
52-
define('MANIAPLANET_BUILD_WINDOWS', '2017-08-30_18_16');
51+
define('MANIAPLANET_BUILD_POSIX', '2017-11-14_17_00');
52+
define('MANIAPLANET_BUILD_WINDOWS', '2017-11-15_16_36');
5353
define('XMLRPC_API_VERSION', '2013-04-16');
5454
define('MODESCRIPT_API_VERSION', '2.3.0');
5555
define('MIN_PHP_VERSION', '5.6.0');

0 commit comments

Comments
 (0)