Hello,
I just updated to 2.5.3 and see that one of my functions is now broken. It was used so that a member logged into EE would remain logged in on some non-EE pages on the site.
Looks like the uniqueid cookie status is deprecated, and I’m wondering how to go about doing this now. Here’s the original query:
$query = "select unique_id, username from exp_members where unique_id = '$_COOKIE[exp_uniqueid]'";
$conn = mysql_query($query)
or die ("Cannot execute query");
if (mysql_num_rows($conn)<1) { ...Thank you.