I moved the code from updateURL to queryPopulate, because it's not used anywhere else and it would need a new parameter (probably form), so it would be also inconsistent with the old iommi_update_URL.
So now both iommi_update_URL and updateURL are deprecated. I would still leave them for some time, just to be sure.
And please if you can test it first before merging? The main problem in steps was:
you sort a table
you filter by something
-> order got removed from the URL query string and thus the table wasn't in the right order anymore
also if you had multiple tables on a page, one filter would remove other filters from the URL query string
I moved the code from
updateURL
toqueryPopulate
, because it's not used anywhere else and it would need a new parameter (probablyform
), so it would be also inconsistent with the oldiommi_update_URL
. So now bothiommi_update_URL
andupdateURL
are deprecated. I would still leave them for some time, just to be sure.And please if you can test it first before merging? The main problem in steps was:
order
got removed from the URL query string and thus the table wasn't in the right order anymore