Title: [Plugin: Comment Meta Display] Bug report
Last modified: August 20, 2016

---

# [Plugin: Comment Meta Display] Bug report

 *  [trickleup](https://wordpress.org/support/users/trickleup/)
 * (@trickleup)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-comment-meta-display-bug-report/)
 * There is a bug in the plugin. On line 83 and forward it says
 *     ```
       else {
       // this is a serialized array/object so we should NOT display it
       --$count;
       return;
       }
       ```
   
 * That breaks the display of comment meta if it comes across a serialized object/
   array. It should just jump to the next in the loop, with continue instead of 
   return, like:
 *     ```
       else {
       // this is a serialized array/object so we should NOT display it
       --$count;
       continue;
       }
       ```
   
 * [http://wordpress.org/extend/plugins/comment-meta-display/](http://wordpress.org/extend/plugins/comment-meta-display/)

The topic ‘[Plugin: Comment Meta Display] Bug report’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/comment-meta-display_c9a865.svg)
 * [Comment Meta Display](https://wordpress.org/plugins/comment-meta-display/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/comment-meta-display/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/comment-meta-display/)
 * [Active Topics](https://wordpress.org/support/plugin/comment-meta-display/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/comment-meta-display/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/comment-meta-display/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [trickleup](https://wordpress.org/support/users/trickleup/)
 * Last activity: [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-comment-meta-display-bug-report/)
 * Status: not resolved