• Resolved aminsoltani

    (@aminsoltani)


    Hi buddies,

    There is a php warning in this file. I found it in my server logs. the warning is:
    PHP Warning: array_merge(): Argument #1 is not an array in /home/portalrang/domains/portal-rangi.com/public_html/wp-content/plugins/wpdiscuz/class.WpdiscuzCore.php on line 702

    the line 702 shows this code :
    $this->commentsArgs[‘wc_comments’] = array_merge($this->commentsArgs[‘wc_comments’], $moderateComments);

    Please help me to solve this warning.

    Thanks.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    Please change this line to:

    if( isset($this->commentsArgs['wc_comments']) && is_array($this->commentsArgs['wc_comments']) && is_array($moderateComments) ){
    	$this->commentsArgs['wc_comments'] = array_merge($this->commentsArgs['wc_comments'], $moderateComments);
    }

    We’ll check this and fix in next update.

    • This reply was modified 7 years, 3 months ago by gVectors Team.
    Thread Starter aminsoltani

    (@aminsoltani)

    Thanks Bro !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Php warning in wpdiscuz/class.WpdiscuzCore.php’ is closed to new replies.