You are here

function colorbox_update_7200 in Colorbox 7.2

Delete the unused colorbox_login and colorbox_login_links variables.

File

./colorbox.install, line 109
Install, update and uninstall functions for the colorbox module.

Code

function colorbox_update_7200() {
  $ret = array();
  variable_del('colorbox_login');
  variable_del('colorbox_login_links');
  return $ret;
}