You are here

function readonlymode_update_6000 in Read only mode 6

Delete old variables

File

./readonlymode.install, line 16
Update hook and uninstaller for the Read Only Mode module

Code

function readonlymode_update_6000() {
  $ret = array();
  variable_del('readonlymode');
  variable_del('readonlymode_path');
  return $ret;
}