diff options
-rw-r--r-- | modules/account.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/account.module b/modules/account.module index 2ec73a935..c5b38f0ab 100644 --- a/modules/account.module +++ b/modules/account.module @@ -58,7 +58,7 @@ function account_search($keys) { } function account_ac_add($edit) { - db_query("INSERT INTO access (mask, type, reason) VALUES ('". check_input($edit[mask]) ."', '". check_input($edit[type]) ."', '". check_input($edit[reason]) ."')", 1); + db_query("INSERT INTO access (mask, type, reason) VALUES ('". check_input($edit[mask]) ."', '". check_input($edit[type]) ."', '". check_input($edit[reason]) ."')"); } function account_ac_del($id) { |