• In the file: subscribe-to-comments.php

    Replace the safety of line 272:
    – original: $this->errors = ”;
    – replace on: $this->errors = array();

    solution to the problem of illegal offset in line 303:
    – original: if ( is_array($this->errors[$type]) ) {
    – replace on: if (is_array($this->errors) && is_array($this->errors[$type])) {

    Greetings, Durus

    https://www.ads-software.com/plugins/subscribe-to-comments/

  • The topic ‘Illegal Offset – solution’ is closed to new replies.