Closed (duplicate)
Project:
Drupal core
Version:
x.y.z
Component:
node.module
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Feb 2006 at 16:11 UTC
Updated:
17 Feb 2006 at 13:47 UTC
forms.inc v1.67 (which modifies redirect behaviour) breaks admin/node/search: the results page is generated but then redirected to itself. But I don't think this is a forms API issue.. Perhaps the issue is that node_admin_search doesn't support $_GET keywords. I'm not sure.
Thanks,
-K
Comments
Comment #1
kje commentedSame is true for "admin/locale/string/search". There is also bug
http://drupal.org/node/49123
which describes same effect. The result is generated, but replaced by blank new form.
Comment #2
Zen commentedI'm sure that they are related/caused by the same problem, but I think these are separate issues. If somebody can clarify, please mark this as a dupe if need be.
Thanks
-K
Comment #3
drummThe search form ..._submit() function should return the path to the search results page and do nothing else. THe actual search happens on GET only.
Comment #4
ankur commentedThe issue for the broken q=admin/user/search function has a similar problem: http://drupal.org/node/49730
A drupal_goto() results in an empty $_POST[] array which the code tries to use for the search parameters.
Comment #5
chx commentedhttp://drupal.org/node/49799