projectnami icon indicating copy to clipboard operation
projectnami copied to clipboard

Problem with elementor

Open oliroux opened this issue 4 years ago • 1 comments

Hi, I have a problem with elementor with nami 2.5.1. "Error database WordPress [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]Unclosed quotation mark after the character string" I have found in a previous issue : https://github.com/ProjectNami/projectnami/commit/d72bb9ec2546dece59cd70eca1af42ff3aa8ccb2 But in the current version of wp-includes/functions.php line 609

`function maybe_serialize( $data ) {

if ( is_array( $data ) || is_object( $data ) ) {
	return serialize( $data );
}`

According to the previous correction, I think the line 611 must be:

return str_replace("\0","~[NULL]~", serialize( $data ));

I don't receive error log since this update. Could you validate this correction and update the git? Thanks for all

oliroux avatar Aug 25 '20 12:08 oliroux

Thanks. Missed one when correcting for updates made by WP in 5.5. The main branch is updated now. Latest branch and a new build will be published shortly.

patrickebates avatar Aug 25 '20 13:08 patrickebates