jjdejong / phpip

Patent and other IP rights portfolio manager and docketing system v2
GNU General Public License v3.0
40 stars 17 forks source link

Renewal management UI - "clear filters" function #64

Closed jjdejong closed 4 years ago

jjdejong commented 4 years ago

This function iterates through the parameters of the URL search string to delete all the parameters except "tab", "step" and "invoice_step".

The problem is that the iteration stops after the "tab" parameter, so any parameter after that is not deleted. I believe this is due to the fact that the "tab" parameter is set to a value having "#", which in fact terminates the "search" portion of the URL.

This should be changed so that the "tab" parameter is set to a value without a "#".

jjdejong commented 4 years ago

The last commit should fix this.