Closed (fixed)
Project:
jGrowl
Version:
5.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Sep 2008 at 10:42 UTC
Updated:
12 Oct 2008 at 01:34 UTC
Jump to comment: Most recent
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
Comment #1
Anonymous (not verified) commentedthanks. will include in next beta.
Comment #2
Anonymous (not verified) commentedfixed in beta2.
thanks.
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.