function image_update_7003 in Drupal 7
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
- 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');
}