Title: nej_simon's Replies | WordPress.org

---

# nej_simon

  [  ](https://wordpress.org/support/users/nej_simon/)

 *   [Profile](https://wordpress.org/support/users/nej_simon/)
 *   [Topics Started](https://wordpress.org/support/users/nej_simon/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nej_simon/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nej_simon/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nej_simon/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nej_simon/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nej_simon/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Forms] Admin : Error on line 2001](https://wordpress.org/support/topic/admin-error-on-line-2001/)
 *  [nej_simon](https://wordpress.org/support/users/nej_simon/)
 * (@nej_simon)
 * [12 years ago](https://wordpress.org/support/topic/admin-error-on-line-2001/#post-4876973)
 * I got that too, although the plugin seems to be functioning.
 * It’s line 84 in wpgform-post-type.php that’s causing it.
 *     ```
       if ($content !== get_the_content())
             wp_update_post(array('ID' => get_the_ID(), $content)) ;
       ```
   
 * Changin it to
 *     ```
       if ($content !== get_the_content())
            wp_update_post(array('ID' => get_the_ID(), 'post_content' => $content));
       ```
   
 * Seems to fix the issue (although I haven’t read most of the code so I’m not 100%
   sure what’s going on there :)).

Viewing 1 replies (of 1 total)