Viewing 1 replies (of 1 total)
  • Thread Starter Ryan Hellyer

    (@ryanhellyer)

    I stumbled across this bug again, and found my own post from a month ago when Google searching about it :/

    Here is line 69 where the problem lies:
    $this->nonce = 'mfi-'.$this->args['id'].$this->args['post_type'];

    I’ve fixed it by using $args instead of $this->args
    $this->nonce = 'mfi-'.$args['id'].$args['post_type'];

    It would be nice if this could be rolled into the core plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘PHP error’ is closed to new replies.