Skip to content

Commit

Permalink
[Unallocated#247] Update drupal while we're in here.
Browse files Browse the repository at this point in the history
  • Loading branch information
nhepner1 committed Dec 19, 2014
1 parent 7ee4c97 commit abc2cf5
Show file tree
Hide file tree
Showing 155 changed files with 540 additions and 443 deletions.
7 changes: 0 additions & 7 deletions docroot/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,6 @@ DirectoryIndex index.php index.html index.htm
# uncomment the following line:
# RewriteBase /

# AIS: Adaptive Image Style
RewriteBase /
RewriteCond %{REQUEST_URI} ^(.+)/files/styles/adaptive/(.+)$
RewriteCond %{REQUEST_URI} !/modules/image/sample.png
RewriteCond %{HTTP_COOKIE} ais=([a-z0-9_-]+)
RewriteRule ^(.+)/files/styles/adaptive/(.+)$ $1/files/styles/%1/$2 [R=302,L]

# Pass all requests not referring directly to files in the filesystem to
# index.php. Clean URLs are handled in drupal_environment_initialize().
RewriteCond %{REQUEST_FILENAME} !-f
Expand Down
4 changes: 4 additions & 0 deletions docroot/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

Drupal 7.34, 2014-11-19
----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-006.

Drupal 7.33, 2014-11-07
-----------------------
- Began storing the file modification time of each module and theme in the
Expand Down
2 changes: 1 addition & 1 deletion docroot/includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '7.33');
define('VERSION', '7.34');

/**
* Core API compatibility.
Expand Down
6 changes: 5 additions & 1 deletion docroot/includes/password.inc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function _password_enforce_log2_boundaries($count_log2) {
* @param $algo
* The string name of a hashing algorithm usable by hash(), like 'sha256'.
* @param $password
* The plain-text password to hash.
* Plain-text password up to 512 bytes (128 to 512 UTF-8 characters) to hash.
* @param $setting
* An existing hash or the output of _password_generate_salt(). Must be
* at least 12 characters (the settings and salt).
Expand All @@ -150,6 +150,10 @@ function _password_enforce_log2_boundaries($count_log2) {
* The return string will be truncated at DRUPAL_HASH_LENGTH characters max.
*/
function _password_crypt($algo, $password, $setting) {
// Prevent DoS attacks by refusing to hash large passwords.
if (strlen($password) > 512) {
return FALSE;
}
// The first 12 characters of an existing hash are its setting string.
$setting = substr($setting, 0, 12);

Expand Down
2 changes: 1 addition & 1 deletion docroot/includes/session.inc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function _drupal_session_read($sid) {
// Handle the case of first time visitors and clients that don't store
// cookies (eg. web crawlers).
$insecure_session_name = substr(session_name(), 1);
if (!isset($_COOKIE[session_name()]) && !isset($_COOKIE[$insecure_session_name])) {
if (empty($sid) || (!isset($_COOKIE[session_name()]) && !isset($_COOKIE[$insecure_session_name]))) {
$user = drupal_anonymous_user();
return '';
}
Expand Down
6 changes: 3 additions & 3 deletions docroot/modules/aggregator/aggregator.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ files[] = aggregator.test
configure = admin/config/services/aggregator/settings
stylesheets[all][] = aggregator.css

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/aggregator/tests/aggregator_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/block/block.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
files[] = block.test
configure = admin/structure/block

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/block/tests/block_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ regions[footer] = Footer
regions[highlighted] = Highlighted
regions[help] = Help

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/blog/blog.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = blog.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/book/book.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ files[] = book.test
configure = admin/content/book/settings
stylesheets[all][] = book.css

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/color/color.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = color.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/comment/comment.info
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ files[] = comment.test
configure = admin/content/comment
stylesheets[all][] = comment.css

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/contact/contact.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
files[] = contact.test
configure = admin/structure/contact

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/contextual/contextual.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = contextual.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/dashboard/dashboard.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ files[] = dashboard.test
dependencies[] = block
configure = admin/dashboard/customize

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/dblog/dblog.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = dblog.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/field/field.info
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dependencies[] = field_sql_storage
required = TRUE
stylesheets[all][] = theme/field.css

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies[] = field
files[] = field_sql_storage.test
required = TRUE

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/field/modules/list/list.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies[] = field
dependencies[] = options
files[] = tests/list.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/field/modules/list/tests/list_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package = Testing
version = VERSION
hidden = TRUE

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/field/modules/number/number.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = number.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/field/modules/options/options.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = options.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/field/modules/text/text.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies[] = field
files[] = text.test
required = TRUE

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/field/tests/field_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ files[] = field_test.entity.inc
version = VERSION
hidden = TRUE

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/field_ui/field_ui.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = field_ui.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/file/file.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = tests/file.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/file/tests/file_module_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/filter/filter.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ files[] = filter.test
required = TRUE
configure = admin/config/content/formats

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/forum/forum.info
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ files[] = forum.test
configure = admin/structure/forum
stylesheets[all][] = forum.css

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/help/help.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = help.test

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

6 changes: 3 additions & 3 deletions docroot/modules/image/image.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies[] = file
files[] = image.test
configure = admin/config/media/image-styles

; Information added by Drupal.org packaging script on 2014-11-07
version = "7.33"
; Information added by Drupal.org packaging script on 2014-11-19
version = "7.34"
project = "drupal"
datestamp = "1415375131"
datestamp = "1416429488"

Loading

0 comments on commit abc2cf5

Please sign in to comment.