Commit 235d590c authored by Riccardo Padovani's avatar Riccardo Padovani

Updated Drupal to v7.34

parent ce8917ae
Drupal 7.34, 2014-11-19
----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-006.
Drupal 7.33, 2014-11-07 Drupal 7.33, 2014-11-07
----------------------- -----------------------
- Began storing the file modification time of each module and theme in the - Began storing the file modification time of each module and theme in the
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
/** /**
* The current system version. * The current system version.
*/ */
define('VERSION', '7.33'); define('VERSION', '7.34');
/** /**
* Core API compatibility. * Core API compatibility.
......
...@@ -140,7 +140,7 @@ function _password_enforce_log2_boundaries($count_log2) { ...@@ -140,7 +140,7 @@ function _password_enforce_log2_boundaries($count_log2) {
* @param $algo * @param $algo
* The string name of a hashing algorithm usable by hash(), like 'sha256'. * The string name of a hashing algorithm usable by hash(), like 'sha256'.
* @param $password * @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 * @param $setting
* An existing hash or the output of _password_generate_salt(). Must be * An existing hash or the output of _password_generate_salt(). Must be
* at least 12 characters (the settings and salt). * at least 12 characters (the settings and salt).
...@@ -150,6 +150,10 @@ function _password_enforce_log2_boundaries($count_log2) { ...@@ -150,6 +150,10 @@ function _password_enforce_log2_boundaries($count_log2) {
* The return string will be truncated at DRUPAL_HASH_LENGTH characters max. * The return string will be truncated at DRUPAL_HASH_LENGTH characters max.
*/ */
function _password_crypt($algo, $password, $setting) { 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. // The first 12 characters of an existing hash are its setting string.
$setting = substr($setting, 0, 12); $setting = substr($setting, 0, 12);
......
...@@ -79,7 +79,7 @@ function _drupal_session_read($sid) { ...@@ -79,7 +79,7 @@ function _drupal_session_read($sid) {
// Handle the case of first time visitors and clients that don't store // Handle the case of first time visitors and clients that don't store
// cookies (eg. web crawlers). // cookies (eg. web crawlers).
$insecure_session_name = substr(session_name(), 1); $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(); $user = drupal_anonymous_user();
return ''; return '';
} }
......
...@@ -7,8 +7,8 @@ files[] = aggregator.test ...@@ -7,8 +7,8 @@ files[] = aggregator.test
configure = admin/config/services/aggregator/settings configure = admin/config/services/aggregator/settings
stylesheets[all][] = aggregator.css stylesheets[all][] = aggregator.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = block.test files[] = block.test
configure = admin/structure/block configure = admin/structure/block
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -13,8 +13,8 @@ regions[footer] = Footer ...@@ -13,8 +13,8 @@ regions[footer] = Footer
regions[highlighted] = Highlighted regions[highlighted] = Highlighted
regions[help] = Help regions[help] = Help
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = blog.test files[] = blog.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ files[] = book.test ...@@ -7,8 +7,8 @@ files[] = book.test
configure = admin/content/book/settings configure = admin/content/book/settings
stylesheets[all][] = book.css stylesheets[all][] = book.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = color.test files[] = color.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -9,8 +9,8 @@ files[] = comment.test ...@@ -9,8 +9,8 @@ files[] = comment.test
configure = admin/content/comment configure = admin/content/comment
stylesheets[all][] = comment.css stylesheets[all][] = comment.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = contact.test files[] = contact.test
configure = admin/structure/contact configure = admin/structure/contact
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = contextual.test files[] = contextual.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ files[] = dashboard.test ...@@ -7,8 +7,8 @@ files[] = dashboard.test
dependencies[] = block dependencies[] = block
configure = admin/dashboard/customize configure = admin/dashboard/customize
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = dblog.test files[] = dblog.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -11,8 +11,8 @@ dependencies[] = field_sql_storage ...@@ -11,8 +11,8 @@ dependencies[] = field_sql_storage
required = TRUE required = TRUE
stylesheets[all][] = theme/field.css stylesheets[all][] = theme/field.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ dependencies[] = field ...@@ -7,8 +7,8 @@ dependencies[] = field
files[] = field_sql_storage.test files[] = field_sql_storage.test
required = TRUE required = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ dependencies[] = field ...@@ -7,8 +7,8 @@ dependencies[] = field
dependencies[] = options dependencies[] = options
files[] = tests/list.test files[] = tests/list.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ package = Testing ...@@ -5,8 +5,8 @@ package = Testing
version = VERSION version = VERSION
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field dependencies[] = field
files[] = number.test files[] = number.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field dependencies[] = field
files[] = options.test files[] = options.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ dependencies[] = field ...@@ -7,8 +7,8 @@ dependencies[] = field
files[] = text.test files[] = text.test
required = TRUE required = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ files[] = field_test.entity.inc ...@@ -6,8 +6,8 @@ files[] = field_test.entity.inc
version = VERSION version = VERSION
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field dependencies[] = field
files[] = field_ui.test files[] = field_ui.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field dependencies[] = field
files[] = tests/file.test files[] = tests/file.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ files[] = filter.test ...@@ -7,8 +7,8 @@ files[] = filter.test
required = TRUE required = TRUE
configure = admin/config/content/formats configure = admin/config/content/formats
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -9,8 +9,8 @@ files[] = forum.test ...@@ -9,8 +9,8 @@ files[] = forum.test
configure = admin/structure/forum configure = admin/structure/forum
stylesheets[all][] = forum.css stylesheets[all][] = forum.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = help.test files[] = help.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ dependencies[] = file ...@@ -7,8 +7,8 @@ dependencies[] = file
files[] = image.test files[] = image.test
configure = admin/config/media/image-styles configure = admin/config/media/image-styles
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = image_module_test.module files[] = image_module_test.module
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = locale.test files[] = locale.test
configure = admin/config/regional/language configure = admin/config/regional/language
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ package = Testing ...@@ -5,8 +5,8 @@ package = Testing
version = VERSION version = VERSION
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = menu.test files[] = menu.test
configure = admin/structure/menu configure = admin/structure/menu
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -9,8 +9,8 @@ required = TRUE ...@@ -9,8 +9,8 @@ required = TRUE
configure = admin/structure/types configure = admin/structure/types
stylesheets[all][] = node.css stylesheets[all][] = node.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ package = Core ...@@ -5,8 +5,8 @@ package = Core
core = 7.x core = 7.x
files[] = openid.test files[] = openid.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
dependencies[] = openid dependencies[] = openid
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -4,8 +4,8 @@ package = Core ...@@ -4,8 +4,8 @@ package = Core
version = VERSION version = VERSION
core = 7.x core = 7.x
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = path.test files[] = path.test
configure = admin/config/search/path configure = admin/config/search/path
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = php.test files[] = php.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = poll.test files[] = poll.test
stylesheets[all][] = poll.css stylesheets[all][] = poll.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -11,8 +11,8 @@ configure = admin/config/people/profile ...@@ -11,8 +11,8 @@ configure = admin/config/people/profile
; See user_system_info_alter(). ; See user_system_info_alter().
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = rdf.test files[] = rdf.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -8,8 +8,8 @@ files[] = search.test ...@@ -8,8 +8,8 @@ files[] = search.test
configure = admin/config/search/settings configure = admin/config/search/settings
stylesheets[all][] = search.css stylesheets[all][] = search.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = shortcut.test files[] = shortcut.test
configure = admin/config/user-interface/shortcut configure = admin/config/user-interface/shortcut
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -56,8 +56,8 @@ files[] = tests/upgrade/update.trigger.test ...@@ -56,8 +56,8 @@ files[] = tests/upgrade/update.trigger.test
files[] = tests/upgrade/update.field.test files[] = tests/upgrade/update.field.test
files[] = tests/upgrade/update.user.test files[] = tests/upgrade/update.user.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ package = Testing ...@@ -5,8 +5,8 @@ package = Testing
version = VERSION version = VERSION
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ stylesheets[all][] = common_test.css ...@@ -7,8 +7,8 @@ stylesheets[all][] = common_test.css
stylesheets[print][] = common_test.print.css stylesheets[print][] = common_test.print.css
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ package = Testing ...@@ -5,8 +5,8 @@ package = Testing
version = VERSION version = VERSION
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
dependencies[] = entity_cache_test_dependency dependencies[] = entity_cache_test_dependency
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ package = Testing ...@@ -5,8 +5,8 @@ package = Testing
version = VERSION version = VERSION
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = file_test.module files[] = file_test.module
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -57,4 +57,25 @@ class PasswordHashingTest extends DrupalWebTestCase { ...@@ -57,4 +57,25 @@ class PasswordHashingTest extends DrupalWebTestCase {
$this->assertFalse(user_needs_new_hash($account), 'Re-hashed password does not need a new hash.'); $this->assertFalse(user_needs_new_hash($account), 'Re-hashed password does not need a new hash.');
$this->assertTrue(user_check_password($password, $account), 'Password check succeeds with re-hashed password.'); $this->assertTrue(user_check_password($password, $account), 'Password check succeeds with re-hashed password.');
} }
/**
* Verifies that passwords longer than 512 bytes are not hashed.
*/
public function testLongPassword() {
$password = str_repeat('x', 512);
$result = user_hash_password($password);
$this->assertFalse(empty($result), '512 byte long password is allowed.');
$password = str_repeat('x', 513);
$result = user_hash_password($password);
$this->assertFalse($result, '513 byte long password is not allowed.');
// Check a string of 3-byte UTF-8 characters.
$password = str_repeat('€', 170);
$result = user_hash_password($password);
$this->assertFalse(empty($result), '510 byte long password is allowed.');
$password .= 'xx';
$this->assertFalse(empty($result), '512 byte long password is allowed.');
$password = str_repeat('€', 171);
$result = user_hash_password($password);
$this->assertFalse($result, '513 byte long password is not allowed.');
}
} }
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ core = 7.x ...@@ -5,8 +5,8 @@ core = 7.x
hidden = TRUE hidden = TRUE
package = Testing package = Testing
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ version = VERSION ...@@ -7,8 +7,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
hidden = TRUE hidden = TRUE
dependencies[] = _missing_dependency dependencies[] = _missing_dependency
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
hidden = TRUE hidden = TRUE
dependencies[] = system_incompatible_core_version_test dependencies[] = system_incompatible_core_version_test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 5.x core = 5.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ hidden = TRUE ...@@ -7,8 +7,8 @@ hidden = TRUE
; system_incompatible_module_version_test declares version 1.0 ; system_incompatible_module_version_test declares version 1.0
dependencies[] = system_incompatible_module_version_test (>2.0) dependencies[] = system_incompatible_module_version_test (>2.0)
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = 1.0 ...@@ -5,8 +5,8 @@ version = 1.0
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = system_test.module files[] = system_test.module
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
hidden = TRUE hidden = TRUE
dependencies[] = taxonomy dependencies[] = taxonomy
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ hidden = TRUE ...@@ -6,8 +6,8 @@ hidden = TRUE
settings[basetheme_only] = base theme value settings[basetheme_only] = base theme value
settings[subtheme_override] = base theme value settings[subtheme_override] = base theme value
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ hidden = TRUE ...@@ -6,8 +6,8 @@ hidden = TRUE
settings[subtheme_override] = subtheme value settings[subtheme_override] = subtheme value
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -17,8 +17,8 @@ stylesheets[all][] = system.base.css ...@@ -17,8 +17,8 @@ stylesheets[all][] = system.base.css
settings[theme_test_setting] = default value settings[theme_test_setting] = default value
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ package = Testing ...@@ -5,8 +5,8 @@ package = Testing
version = VERSION version = VERSION
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = statistics.test files[] = statistics.test
configure = admin/config/system/statistics configure = admin/config/system/statistics
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = syslog.test files[] = syslog.test
configure = admin/config/development/logging configure = admin/config/development/logging
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -12,8 +12,8 @@ files[] = system.test ...@@ -12,8 +12,8 @@ files[] = system.test
required = TRUE required = TRUE
configure = admin/config/system configure = admin/config/system
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -8,8 +8,8 @@ files[] = taxonomy.module ...@@ -8,8 +8,8 @@ files[] = taxonomy.module
files[] = taxonomy.test files[] = taxonomy.test
configure = admin/structure/taxonomy configure = admin/structure/taxonomy
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -4,8 +4,8 @@ core = 7.x ...@@ -4,8 +4,8 @@ core = 7.x
package = Core package = Core
version = VERSION version = VERSION
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ version = VERSION ...@@ -6,8 +6,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = tracker.test files[] = tracker.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ package = Testing ...@@ -5,8 +5,8 @@ package = Testing
version = VERSION version = VERSION
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ version = VERSION ...@@ -6,8 +6,8 @@ version = VERSION
core = 7.x core = 7.x
files[] = translation.test files[] = translation.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -4,8 +4,8 @@ package = Testing ...@@ -4,8 +4,8 @@ package = Testing
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = trigger.test files[] = trigger.test
configure = admin/structure/trigger configure = admin/structure/trigger
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -4,8 +4,8 @@ package = Testing ...@@ -4,8 +4,8 @@ package = Testing
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -4,8 +4,8 @@ package = Testing ...@@ -4,8 +4,8 @@ package = Testing
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -4,8 +4,8 @@ package = Testing ...@@ -4,8 +4,8 @@ package = Testing
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -3,8 +3,8 @@ description = Test theme which acts as a base theme for other test subthemes. ...@@ -3,8 +3,8 @@ description = Test theme which acts as a base theme for other test subthemes.
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -4,8 +4,8 @@ core = 7.x ...@@ -4,8 +4,8 @@ core = 7.x
base theme = update_test_basetheme base theme = update_test_basetheme
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
files[] = update.test files[] = update.test
configure = admin/reports/updates/settings configure = admin/reports/updates/settings
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -9,8 +9,8 @@ required = TRUE ...@@ -9,8 +9,8 @@ required = TRUE
configure = admin/config/people configure = admin/config/people
stylesheets[all][] = user.css stylesheets[all][] = user.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ core = 7.x ...@@ -5,8 +5,8 @@ core = 7.x
dependencies[] = block dependencies[] = block
dependencies[] = dblog dependencies[] = dblog
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -24,8 +24,8 @@ dependencies[] = field_ui ...@@ -24,8 +24,8 @@ dependencies[] = field_ui
dependencies[] = file dependencies[] = file
dependencies[] = rdf dependencies[] = rdf
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -6,8 +6,8 @@ core = 7.x ...@@ -6,8 +6,8 @@ core = 7.x
hidden = TRUE hidden = TRUE
files[] = drupal_system_listing_compatible_test.test files[] = drupal_system_listing_compatible_test.test
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -8,8 +8,8 @@ version = VERSION ...@@ -8,8 +8,8 @@ version = VERSION
core = 6.x core = 6.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -4,8 +4,8 @@ version = VERSION ...@@ -4,8 +4,8 @@ version = VERSION
core = 7.x core = 7.x
hidden = TRUE hidden = TRUE
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -34,8 +34,8 @@ regions[footer] = Footer ...@@ -34,8 +34,8 @@ regions[footer] = Footer
settings[shortcut_module_link] = 0 settings[shortcut_module_link] = 0
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -7,8 +7,8 @@ stylesheets[all][] = style.css ...@@ -7,8 +7,8 @@ stylesheets[all][] = style.css
stylesheets[print][] = print.css stylesheets[print][] = print.css
settings[garland_width] = fluid settings[garland_width] = fluid
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -13,8 +13,8 @@ regions[page_bottom] = Page bottom ...@@ -13,8 +13,8 @@ regions[page_bottom] = Page bottom
regions[sidebar_first] = First sidebar regions[sidebar_first] = First sidebar
regions_hidden[] = sidebar_first regions_hidden[] = sidebar_first
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
...@@ -5,8 +5,8 @@ version = VERSION ...@@ -5,8 +5,8 @@ version = VERSION
core = 7.x core = 7.x
stylesheets[all][] = layout.css stylesheets[all][] = layout.css
; Information added by Drupal.org packaging script on 2014-11-07 ; Information added by Drupal.org packaging script on 2014-11-19
version = "7.33" version = "7.34"
project = "drupal" project = "drupal"
datestamp = "1415375131" datestamp = "1416429488"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment