You are here

function book_made_simple_update_6013 in Book made simple 6.3

Same name and namespace in other branches
  1. 7.3 book_made_simple.install \book_made_simple_update_6013()

File

./book_made_simple.install, line 8

Code

function book_made_simple_update_6013() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'book_made_simple'");
      break;
  }
  return $ret;
}