contrib modules security updates

This commit is contained in:
Bachir Soussi Chiadmi
2016-10-13 12:10:40 +02:00
parent ffd758abc9
commit 747127f643
732 changed files with 67976 additions and 23207 deletions

View File

@@ -402,7 +402,7 @@ function views_update_6008() {
}
/**
* Enlarge the views_display.display_options field to accomodate a larger set
* Enlarge the views_display.display_options field to accommodate a larger set
* of configurations (e. g. fields, filters, etc.) on a display.
*/
function views_schema_6009() {
@@ -631,3 +631,17 @@ function views_update_7301() {
);
db_change_field('views_view', 'name', 'name', $new_field);
}
/**
* Remove headers field from cache tables
*
* @see system_update_7054().
*/
function views_update_7302() {
if (db_field_exists('cache_views', 'headers')) {
db_drop_field('cache_views', 'headers');
}
if (db_field_exists('cache_views_data', 'headers')) {
db_drop_field('cache_views_data', 'headers');
}
}