PHP Warning: calling get_current_screen()->base on null
-
In tinymce-advanced.php line 364 in the
show_version_warning()method
get_current_screen()may returnnullTherefore, you should check if
get_current_screen() != nullbefore usingget_current_screen()->baseif( null == get_current_screen() ) { return; }This happens if wp_editor is used in an ajax response.
Hope this helps,
John
The topic ‘PHP Warning: calling get_current_screen()->base on null’ is closed to new replies.