Also, since I upgraded, I'm getting an error on the REPLACE statement:
Code:
REPLACE INTO stopbotsregistry (hash,rf_name,rf_value)
values(
'[Redacted]',
'[Redacted]',
'[Redacted'
);
The MySQL error I'm getting is:
Code:
Unknown column 'rf_name' in 'field list'
The only columns in that table are:
Code:
hash, regtime, uf_name, uf_value
In the updated files, I'm seeing "rf_name" in 3 different files for a total of 8 instances. Also, "rf_value" appears in some of those files as well. Was there a database change that just didn't take? If I change the query to match the columns in the table, will that fargle anything up?