PHP7: Warning: Use of undefined constant EmbAdminAjax
-
This plugin run under PHP7, produces error:
Warning: Use of undefined constant EmbAdminAjax - assumed 'EmbAdminAjax' (this will throw an Error in a future version of PHP) in public_html/wp-content/plugins/embedder/emb-admin-ajax.php on line 33Quick fix:
on line 33 of emb-admin-ajax.php find line:
$methods = get_class_methods(EmbAdminAjax);and replace with
$methods = get_class_methods('EmbAdminAjax');
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘PHP7: Warning: Use of undefined constant EmbAdminAjax’ is closed to new replies.