? helpinject_modal
Index: helpinject.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/helpinject/helpinject.install,v
retrieving revision 1.2
diff -u -p -r1.2 helpinject.install
--- helpinject.install	22 Mar 2009 15:02:25 -0000	1.2
+++ helpinject.install	24 Apr 2010 23:17:15 -0000
@@ -8,6 +8,8 @@
 function helpinject_install() {
   drupal_set_message('Installing Help Injection.');
   drupal_install_schema('helpinject');
+  // set weight as of 6100
+  update_sql("UPDATE {system} SET weight = 11 WHERE name = 'helpinject'");
 }
 
 function helpinject_uninstall() {
@@ -48,3 +50,11 @@ function helpinject_schema() {
 
   return $schema;
 }
+/*
+ * update helpinjects weight so that it goes after cck's fieldgroup
+ */
+function helpinject_update_6100() {
+  $return[] = update_sql("UPDATE {system} SET weight = 11 WHERE name = 'helpinject'");
+  return $return;
+}
+
