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

kje’s picture

Component: node system » locale.module

Same 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.

Zen’s picture

Component: locale.module » node.module

I'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

drumm’s picture

The search form ..._submit() function should return the path to the search results page and do nothing else. THe actual search happens on GET only.

ankur’s picture

The 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.

chx’s picture

Status: Active » Closed (duplicate)