• Hi,

    Just saw this log message once I started using register_shutdown_function in my plugin code:

    Array(
        [type] => 2048
        [message] => Accessing static property WP_EX_Aviary_editor::$path as non static
        [file] => C:\wamp\www\mcgill\wp-content\plugins\aviary-editor\aviary-editor.php
        [line] => 52
    )

    This is easily fixed if you replace $this->path with WP_EX_Aviary_editor::$path.

    https://www.ads-software.com/extend/plugins/aviary-editor/

Viewing 1 replies (of 1 total)
  • Thread Starter montrealist

    (@spectrus)

    Just saw that my fix won’t work. You’ll also need to search for all occurences of

    $this->path

    and replace each with this:

    WP_EX_Aviary_editor::$path

Viewing 1 replies (of 1 total)
  • The topic ‘Error: Accessing static property $path as non static’ is closed to new replies.