Your install functon is missing a single quote around the module name:

function jgrowl_install() {
  // Always keep jgrowl last so we can grab all the messages.
  $weight = db_result(db_query("SELECT weight FROM {system} ORDER BY weight DESC LIMIT 1"));
  db_query("UPDATE {system} SET weight = %d WHERE name = 'jgrowl", $weight + 100);
}

Fixed using:
db_query("UPDATE {system} SET weight = %d WHERE name = 'jgrowl'", $weight + 100);

Comments

Anonymous’s picture

thanks. will include in next beta.

Anonymous’s picture

Status: Active » Fixed

fixed in beta2.

thanks.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.