Skip to content

Commit b00a0d4

Browse files
authored
Fixes bug from SA-CORE-2018-002 changes, updates CHANGELOG (#117)
* Fixes bug from SA-CORE-2018-002 changes, updates CHANGELOG * Fix version in system.module, align version with d6lts/drupal
1 parent 2d234e1 commit b00a0d4

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

CHANGELOG.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Drupal 6.43 LTS, 2018-03-29
2+
-----------------------
3+
- Fixes bug from SA-CORE-2018-002 changes, update version.
4+
5+
Drupal 6.41, Drupal 6.42
6+
-----------------------
7+
Skipped to bring version number in line with
8+
https://github.com/d6lts/drupal
9+
10+
Drupal 6.40 Pressflow, 2018-03-28
11+
-----------------------
12+
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2018-002.
13+
14+
Drupal 6.39 Pressflow, 2018-02-21
15+
-----------------------
16+
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2018-001.
117

218
Drupal 6.38, 2016-02-24 - Final release
319
---------------------------------------

includes/bootstrap.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2258,6 +2258,8 @@ function _drupal_bootstrap_sanitize_input(&$input, $whitelist = array()) {
22582258
$sanitized_keys = array_merge($sanitized_keys, _drupal_bootstrap_sanitize_input($input[$key], $whitelist));
22592259
}
22602260
}
2261+
// PHP 5.x will leave the array pointer at the end without this.
2262+
reset($input);
22612263
}
22622264

22632265
return $sanitized_keys;

modules/system/system.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* The current system version.
1010
*/
11-
define('VERSION', '6.40');
11+
define('VERSION', '6.43');
1212

1313
/**
1414
* Core API compatibility.

0 commit comments

Comments
 (0)