Commit eadc9e17 authored by Riccardo Padovani's avatar Riccardo Padovani

Updated Drupal core to 7.31

parent 3c75d282
Drupal 7.31, 2014-08-06
----------------------
- Fixed security issues (denial of service). See SA-CORE-2014-004.
Drupal 7.30, 2014-07-24 Drupal 7.30, 2014-07-24
----------------------- -----------------------
- Fixed a regression introduced in Drupal 7.29 that caused files or images - Fixed a regression introduced in Drupal 7.29 that caused files or images
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
/** /**
* The current system version. * The current system version.
*/ */
define('VERSION', '7.30'); define('VERSION', '7.31');
/** /**
* Core API compatibility. * Core API compatibility.
......
...@@ -178,7 +178,41 @@ function xmlrpc_message_parse($xmlrpc_message) { ...@@ -178,7 +178,41 @@ function xmlrpc_message_parse($xmlrpc_message) {
xml_set_element_handler($xmlrpc_message->_parser, 'xmlrpc_message_tag_open', 'xmlrpc_message_tag_close'); xml_set_element_handler($xmlrpc_message->_parser, 'xmlrpc_message_tag_open', 'xmlrpc_message_tag_close');
xml_set_character_data_handler($xmlrpc_message->_parser, 'xmlrpc_message_cdata'); xml_set_character_data_handler($xmlrpc_message->_parser, 'xmlrpc_message_cdata');
xmlrpc_message_set($xmlrpc_message); xmlrpc_message_set($xmlrpc_message);
if (!xml_parse($xmlrpc_message->_parser, $xmlrpc_message->message)) {
// Strip XML declaration.
$header = preg_replace('/<\?xml.*?\?'.'>/s', '', substr($xmlrpc_message->message, 0, 100), 1);
$xml = trim(substr_replace($xmlrpc_message->message, $header, 0, 100));
if ($xml == '') {
return FALSE;
}
// Strip DTD.
$header = preg_replace('/^<!DOCTYPE[^>]*+>/i', '', substr($xml, 0, 200), 1);
$xml = trim(substr_replace($xml, $header, 0, 200));
if ($xml == '') {
return FALSE;
}
// Confirm the XML now starts with a valid root tag. A root tag can end in [> \t\r\n]
$root_tag = substr($xml, 0, strcspn(substr($xml, 0, 20), "> \t\r\n"));
// Reject a second DTD.
if (strtoupper($root_tag) == '<!DOCTYPE') {
return FALSE;
}
if (!in_array($root_tag, array('<methodCall', '<methodResponse', '<fault'))) {
return FALSE;
}
// Skip parsing if there is an unreasonably large number of tags.
try {
$dom = new DOMDocument();
@$dom->loadXML($xml);
if ($dom->getElementsByTagName('*')->length > variable_get('xmlrpc_message_maximum_tag_count', 30000)) {
return FALSE;
}
}
catch (Exception $e) {
return FALSE;
}
if (!xml_parse($xmlrpc_message->_parser, $xml)) {
return FALSE; return FALSE;
} }
xml_parser_free($xmlrpc_message->_parser); xml_parser_free($xmlrpc_message->_parser);
......
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -158,6 +158,11 @@ function _openid_xrds_parse($raw_xml) { ...@@ -158,6 +158,11 @@ function _openid_xrds_parse($raw_xml) {
return array(); return array();
} }
// Also stop parsing if there is an unreasonably large number of tags.
if ($dom->getElementsByTagName('*')->length > variable_get('openid_xrds_maximum_tag_count', 30000)) {
return array();
}
// Parse the DOM document for the information we need. // Parse the DOM document for the information we need.
if ($xml = simplexml_import_dom($dom)) { if ($xml = simplexml_import_dom($dom)) {
foreach ($xml->children(OPENID_NS_XRD)->XRD as $xrd) { foreach ($xml->children(OPENID_NS_XRD)->XRD as $xrd) {
......
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -211,6 +211,11 @@ class XMLRPCMessagesTestCase extends DrupalWebTestCase { ...@@ -211,6 +211,11 @@ class XMLRPCMessagesTestCase extends DrupalWebTestCase {
* Make sure that XML-RPC can transfer large messages. * Make sure that XML-RPC can transfer large messages.
*/ */
function testSizedMessages() { function testSizedMessages() {
// These tests can produce up to 128 x 160 words in the XML-RPC message
// (see xmlrpc_test_message_sized_in_kb()) with 4 tags used to represent
// each. Set a large enough tag limit to allow this to be tested.
variable_set('xmlrpc_message_maximum_tag_count', 100000);
$xml_url = url(NULL, array('absolute' => TRUE)) . 'xmlrpc.php'; $xml_url = url(NULL, array('absolute' => TRUE)) . 'xmlrpc.php';
$sizes = array(8, 80, 160); $sizes = array(8, 80, 160);
foreach ($sizes as $size) { foreach ($sizes as $size) {
......
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
...@@ -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-07-24 ; Information added by Drupal.org packaging script on 2014-08-06
version = "7.30" version = "7.31"
project = "drupal" project = "drupal"
datestamp = "1406239730" datestamp = "1407346433"
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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