You are here

function lightbox2_update_6002 in Lightbox2 7.2

Same name and namespace in other branches
  1. 8 lightbox2.install \lightbox2_update_6002()
  2. 6 lightbox2.install \lightbox2_update_6002()
  3. 7 lightbox2.install \lightbox2_update_6002()

'lightbox2_slideshow_pause_on_previous_click' was mis-named as 'lightbox2_slideshow_pause_on_prev_click'.

File

./lightbox2.install, line 190
Installation functions for Lightbox2.

Code

function lightbox2_update_6002() {
  $variable_name = 'lightbox2_slideshow_pause_on_prev_click';
  $var = variable_get($variable_name);
  if ($var) {
    variable_set('lightbox2_slideshow_pause_on_previous_click', $var);
    variable_del($variable_name);
  }
  return array();
}