deprecated parse_str() function in table.php, line 47

CDLMQSE 6d ago

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

Max_admin 5d ago
Answer

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.

Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
CDLMQSE 5d ago
1 Likes

Hi,

Thanks à lot, it works now.

👍

Post a Reply