You are here

function flexslider_update_7002 in Flex Slider 7

Same name and namespace in other branches
  1. 7.2 flexslider.install \flexslider_update_7002()

Implements hook_update_N().

Enables the Image module since it is now explicitly listed as a dependency.

File

./flexslider.install, line 139
Installation actions for Flex Slider

Code

function flexslider_update_7002(&$sandbox) {
  module_enable(array(
    'image',
  ));
}