Skip to content

Commit

Permalink
Fixes bug from SA-CORE-2018-002 changes, updates CHANGELOG (#117)
Browse files Browse the repository at this point in the history
* Fixes bug from SA-CORE-2018-002 changes, updates CHANGELOG

* Fix version in system.module, align version with d6lts/drupal
  • Loading branch information
pwolanin authored Mar 29, 2018
1 parent 2d234e1 commit b00a0d4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Drupal 6.43 LTS, 2018-03-29
-----------------------
- Fixes bug from SA-CORE-2018-002 changes, update version.

Drupal 6.41, Drupal 6.42
-----------------------
Skipped to bring version number in line with
https://github.com/d6lts/drupal

Drupal 6.40 Pressflow, 2018-03-28
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2018-002.

Drupal 6.39 Pressflow, 2018-02-21
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2018-001.

Drupal 6.38, 2016-02-24 - Final release
---------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2258,6 +2258,8 @@ function _drupal_bootstrap_sanitize_input(&$input, $whitelist = array()) {
$sanitized_keys = array_merge($sanitized_keys, _drupal_bootstrap_sanitize_input($input[$key], $whitelist));
}
}
// PHP 5.x will leave the array pointer at the end without this.
reset($input);
}

return $sanitized_keys;
Expand Down
2 changes: 1 addition & 1 deletion modules/system/system.module
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '6.40');
define('VERSION', '6.43');

/**
* Core API compatibility.
Expand Down

0 comments on commit b00a0d4

Please sign in to comment.