Closed (fixed)
Project:
Translation table
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Apr 2009 at 13:41 UTC
Updated:
22 May 2009 at 18:10 UTC
When a change has been made in the menu translation form, and you go to use the pager, the URL that it points to, looks like it includes all the elements from the form. When the form is very large, this can cause problems.
Is there a reason for the extra data to be there? The form still works when this extra data is removed from the URL, so I suspect the normal behaviour should be to exclude it.
Comments
Comment #1
geodaniel commentedIt appears the pager adds the data from the $_REQUEST variable, even though it's not specifically passed to the pager function. One workaround (read "hack") could be to
unset($_REQUEST)or more specificallyunset($_REQUEST['string'])but it really doesn't feel like the right way of doing it.Perhaps using Drupal's forms API would stop this happening?
Comment #2
pasqualleShould be fixed with #451704: Various improvements