contrib modules security updates
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user