diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-18 09:12:40 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-18 09:12:40 +0000 |
commit | 631d1506449917a5170ad4e523b18957831dbe4e (patch) | |
tree | f7face19a97b05bfcb12a07bccebac8ca86195cb /modules/node | |
parent | dd814739ab2b61f572695f91340ccd617aa09259 (diff) | |
download | brdo-631d1506449917a5170ad4e523b18957831dbe4e.tar.gz brdo-631d1506449917a5170ad4e523b18957831dbe4e.tar.bz2 |
#59070, forms on paged versionis of admin/node did not work, patch by tenrapid
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 6d8f9f43a..d4a58bd3d 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1147,9 +1147,6 @@ function node_admin_nodes() { $form['nodes'] = array('#type' => 'checkboxes', '#options' => $nodes); $form['pager'] = array('#value' => theme('pager', NULL, 50, 0)); - $form['#method'] = 'post'; - $form['#action'] = url('admin/node'); - // Call the form first, to allow for the form_values array to be populated. $output .= drupal_get_form('node_admin_nodes', $form); |