--- autoassignrole.install	2009-08-14 05:31:16.000000000 -0400
+++ autoassignrolenew.install	2009-08-14 05:02:37.000000000 -0400
@@ -51,6 +51,12 @@ function autoassignrole_install() {
   db_query("INSERT into {autoassignrole} (arid,value) VALUES ('%s', '%s')",
     'page_active', 0
   );
+  db_query("INSERT into {autoassignrole} (arid,value) VALUES ('%s', '%s')",
+    'redirect_register', 0
+  );
+  db_query("INSERT into {autoassignrole} (arid,value) VALUES ('%s', '%s')",
+    'redirect_register_path', 'register'
+  );  
 }
 
 /**
@@ -156,3 +162,10 @@ function autoassignrole_update_6001() {
   $ret[] = update_sql('ALTER TABLE {autoassignrole_page} ADD menu VARCHAR(255)');
   return $ret;
 }
+
+function autoassignrole_update_6002() {
+  $ret = array();
+  $ret[] = update_sql("INSERT into {autoassignrole} (arid,value) VALUES ('redirect_register', 0)");
+  $ret[] = update_sql("INSERT into {autoassignrole} (arid,value) VALUES ('redirect_register_path', 'register')");
+  return $ret;
+}
