diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-08-22 06:59:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-08-22 06:59:01 +0000 |
commit | 40467c7dd76e61e13ab02602a04c368adfbc3f45 (patch) | |
tree | e9432ade72d5146d45851554c2be7ef3d545eb57 /modules | |
parent | a3ff31946074180a5a2ab68045a1bb425815ca9c (diff) | |
download | brdo-40467c7dd76e61e13ab02602a04c368adfbc3f45.tar.gz brdo-40467c7dd76e61e13ab02602a04c368adfbc3f45.tar.bz2 |
- removed debug statement
Diffstat (limited to 'modules')
-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) { |