function image_update_7003
7.x image.install | image_update_7003() |
Remove the variables that set alt and title length since they were not used for database column size and could cause PDO exceptions.
Related topics
File
- drupal-7.x/
modules/ image/ image.install, line 417 - Install, update and uninstall functions for the image module.
Code
function image_update_7003() {
variable_del('image_alt_length');
variable_del('image_title_length');
}