| 1 |
<?php |
<?php |
| 2 |
// $Id: $ |
// $Id: jgrowl.install,v 1.1 2008/09/21 04:34:07 stevemckenzie Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* |
* |
| 14 |
function jgrowl_install() { |
function jgrowl_install() { |
| 15 |
// Always keep jgrowl last so we can grab all the messages. |
// Always keep jgrowl last so we can grab all the messages. |
| 16 |
$weight = db_result(db_query("SELECT weight FROM {system} ORDER BY weight DESC LIMIT 1")); |
$weight = db_result(db_query("SELECT weight FROM {system} ORDER BY weight DESC LIMIT 1")); |
| 17 |
db_query("UPDATE {system} SET weight = %d WHERE name = 'jgrowl", $weight + 100); |
db_query("UPDATE {system} SET weight = %d WHERE name = 'jgrowl'", $weight + 100); |
| 18 |
} |
} |
| 19 |
|
|