[Plugin: Disqus Comment System] undefined: editorial-comment in disqus.php on line 935 [fix]
-
Disqus.php throws an error on line 935 when it looks for editorial-comment which doesn’t exists in $known_types.
if ( in_array( $row['comment_approved'], $known_types ) )
to fix it this line should be changed to:
if ( in_array( $row['comment_approved'], $known_types, true ) )
https://www.ads-software.com/extend/plugins/disqus-comment-system/
- The topic ‘[Plugin: Disqus Comment System] undefined: editorial-comment in disqus.php on line 935 [fix]’ is closed to new replies.