Hi,
I'm encountering two errors in the header of a table. It seems there's a call to a deprecated function in table.php, line 47.

How can is fix this?
Thanks
Hi CDLMQSE
Line 47 is:
parse_str($urlpts["query"], $params);
You should change it to:
if(!empty($urlpts["query"])){
parse_str($urlpts["query"], $params);
}
Thanks for posting about this, it should be fixed in the next update.
