diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-08-26 07:13:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-08-26 07:13:08 +0000 |
commit | 93fb265d478c06a6dcce25473f1f904095c5622a (patch) | |
tree | 0615d93e9ad759cdee97815363307088f65c141c /modules/node | |
parent | 8a6ba5f1d0ba643cf7d02280fe39d8637e46b39c (diff) | |
download | brdo-93fb265d478c06a6dcce25473f1f904095c5622a.tar.gz brdo-93fb265d478c06a6dcce25473f1f904095c5622a.tar.bz2 |
- Removed a debug statement.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 0dba95832..96e43cb57 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -654,7 +654,7 @@ function node_admin_nodes() { $operation = $operations[$_POST["edit"]["operation"]][1]; foreach ($_POST["edit"]["status"] as $nid => $value) { if ($value) { - db_queryd($operation, $nid); + db_query($operation, $nid); } } |