<?php

/**
* Implementation of hook_instal()
*/
function drupalforfirebug_install() {
  db_query("UPDATE {system} SET weight = 100000 WHERE name = 'drupalforfirebug'");
}

function drupalforfirebug_update_1() {
  $items = array();
  $items[] = update_sql("UPDATE {system} SET weight = 100000 WHERE name = 'drupalforfirebug'");
  return $items;
}
