diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 2844995d6a..0281795090 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,8 @@ +Drupal 7.95, 2023-03-15 +----------------------- +- Fixed security issues: + - SA-CORE-2023-004 + Drupal 7.94, 2022-12-14 ----------------------- - Hotfix for book.module and Select query properties diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index d7435715d9..75291a3809 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -8,7 +8,7 @@ /** * The current system version. */ -define('VERSION', '7.94'); +define('VERSION', '7.95'); /** * Core API compatibility. diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index bf3abb67d6..f7f7cdb6a9 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -2385,7 +2385,7 @@ function system_run_cron() { * Menu callback: return information about PHP. */ function system_php() { - phpinfo(); + phpinfo(~ (INFO_VARIABLES | INFO_ENVIRONMENT)); drupal_exit(); }