Skip to content

Instantly share code, notes, and snippets.

@lamby

lamby/out.txt Secret

Created July 15, 2016 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lamby/dbeda4d49f48a32aa0dd4b3ed7f06a13 to your computer and use it in GitHub Desktop.
Save lamby/dbeda4d49f48a32aa0dd4b3ed7f06a13 to your computer and use it in GitHub Desktop.
--- 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