You are here

function themekey_update_6101 in ThemeKey 6.2

Same name and namespace in other branches
  1. 6.4 themekey.install \themekey_update_6101()
  2. 6.3 themekey.install \themekey_update_6101()
  3. 7.3 themekey.install \themekey_update_6101()
  4. 7 themekey.install \themekey_update_6101()
  5. 7.2 themekey.install \themekey_update_6101()

Implements hook_update_N().

File

./themekey.install, line 121
Database schema of @author Markus Kalkbrenner | Cocomore AG

Code

function themekey_update_6101() {
  $result = update_sql("UPDATE {system} SET weight = 0 WHERE name = 'themekey'");
  return array(
    $result,
  );
}