This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- drupal-7.43/ | |
+++ drupal-7.44/ | |
├── CHANGELOG.txt | |
│ @@ -1,8 +1,12 @@ | |
│ | |
│ +Drupal 7.44, 2016-06-15 | |
│ +----------------------- | |
│ +- Fixed security issues (privilege escalation). See SA-CORE-2016-002. | |
│ + | |
│ Drupal 7.43, 2016-02-24 | |
│ ----------------------- | |
│ - Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-001. | |
│ | |
│ Drupal 7.42, 2016-02-03 | |
│ ----------------------- | |
│ - Stopped invoking hook_flush_caches() on every cron run, since some modules | |
│ ├── stat {} | |
│ │ @@ -1,8 +1,8 @@ | |
│ │ | |
│ │ - Size: 104193 Blocks: 208 IO Block: 4096 regular file | |
│ │ + Size: 104312 Blocks: 208 IO Block: 4096 regular file | |
│ │ Links: 1 | |
│ │ Access: (0644/-rw-r--r--) Uid: ( 1000/ lamby) Gid: ( 1000/ lamby) | |
│ │ | |
│ │ Modify: 2016-06-13 08:34:00.411582406 +0000 | |
│ │ | |
│ │ Birth: - | |
│ ╵ | |
├── includes | |
│ ├── bootstrap.inc | |
│ │ @@ -4,15 +4,15 @@ | |
│ │ * @file | |
│ │ * Functions that need to be loaded on every Drupal request. | |
│ │ */ | |
│ │ | |
│ │ /** | |
│ │ * The current system version. | |
│ │ */ | |
│ │ -define('VERSION', '7.43'); | |
│ │ +define('VERSION', '7.44'); | |
│ │ | |
│ │ /** | |
│ │ * Core API compatibility. | |
│ │ */ | |
│ │ define('DRUPAL_CORE_COMPATIBILITY', '7.x'); | |
│ │ | |
│ │ /** | |
│ ╵ | |
├── modules | |
│ ├── user | |
│ │ ├── user.module | |
│ │ │ @@ -1158,15 +1158,15 @@ | |
│ │ │ '#default_value' => TRUE, | |
│ │ │ '#disabled' => TRUE, | |
│ │ │ ); | |
│ │ │ unset($roles[DRUPAL_AUTHENTICATED_RID]); | |
│ │ │ $form['account']['roles'] = array( | |
│ │ │ '#type' => 'checkboxes', | |
│ │ │ '#title' => t('Roles'), | |
│ │ │ - '#default_value' => (!$register && isset($account->roles) ? array_keys($account->roles) : array()), | |
│ │ │ + '#default_value' => (!$register && !empty($account->roles) ? array_keys(array_filter($account->roles)) : array()), | |
│ │ │ '#options' => $roles, | |
│ │ │ '#access' => $roles && user_access('administer permissions'), | |
│ │ │ DRUPAL_AUTHENTICATED_RID => $checkbox_authenticated, | |
│ │ │ ); | |
│ │ │ | |
│ │ │ $form['account']['notify'] = array( | |
│ │ │ '#type' => 'checkbox', | |
│ │ │ ├── stat {} | |
│ │ │ │ @@ -1,8 +1,8 @@ | |
│ │ │ │ | |
│ │ │ │ - Size: 144326 Blocks: 288 IO Block: 4096 regular file | |
│ │ │ │ + Size: 144341 Blocks: 288 IO Block: 4096 regular file | |
│ │ │ │ Links: 1 | |
│ │ │ │ Access: (0644/-rw-r--r--) Uid: ( 1000/ lamby) Gid: ( 1000/ lamby) | |
│ │ │ │ | |
│ │ │ │ Modify: 2016-06-13 08:34:00.411582406 +0000 | |
│ │ │ │ | |
│ │ │ │ Birth: - | |
│ │ │ ╵ | |
│ │ ╵ | |
│ ╵ | |
╵ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment