MerlinWP icon indicating copy to clipboard operation
MerlinWP copied to clipboard

Deprecated with PHP 8.2

Open aryansann opened this issue 2 years ago • 1 comments

Choosing Merlin WP to work on my domain with PHP 8.2 gives me an error for a few files in merlin-class.php as deprecated. Can you help me on this while it works smoothly on 8.1

aryansann avatar Aug 14 '23 14:08 aryansann

There are a bunch of undeclared variables which need to be fixed. Add this to the top of that class with the other declarations.

	/**
	 * missing declarations
	 */
	protected $ready_big_button_url = null;
	protected $slug = null;
	protected $hook_suffix = null;

oobi avatar Feb 07 '24 01:02 oobi