Title: Error since WP 3.9
Last modified: August 21, 2016

---

# Error since WP 3.9

 *  Resolved [Grégory Viguier](https://wordpress.org/support/users/greglone/)
 * (@greglone)
 * [12 years ago](https://wordpress.org/support/topic/error-since-wp-39/)
 * Hello.
 * There’s an error when posting a comment.
    `mysql_query()` and `mysql_query_row()`
   have been deprecated since WordPress 3.9.
 * Fix:
    subscribe-to-comments-reloaded.php Line 945, replace this:
 *     ```
       // Get the parent comment author email so we can search for any Replies Only subscriptions
       $parent_comment_author_email_query = mysql_query( "SELECT <code>comment_author_email</code> FROM $wpdb->comments WHERE <code>comment_ID</code> = '$parent_comment_id'" );
       $parent_comment_author_email       = mysql_fetch_row( $parent_comment_author_email_query );
       $parent_comment_author_email       = "\_stcr@\_" . $parent_comment_author_email[0];
       ```
   
 * with this:
 *     ```
       // Get the parent comment author email so we can search for any Replies Only subscriptions
       $parent_comment_author_email = "\_stcr@\_" . get_comment_author_email( $parent_comment_id );
       ```
   
 * Cheers 🙂
    Greg
 * [https://wordpress.org/plugins/subscribe-to-comments-reloaded/](https://wordpress.org/plugins/subscribe-to-comments-reloaded/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [Israel Barragan](https://wordpress.org/support/users/reedyseth/)
 * (@reedyseth)
 * [12 years ago](https://wordpress.org/support/topic/error-since-wp-39/#post-4819995)
 * Hello [@greg](https://wordpress.org/support/users/greg/)
 * Thank you for your feedback. We are going to make the changes, debug, test and
   then upload the fix.
 * Thank you for making this plugin better.
 * Regards.!!
 *  [thatsgame1](https://wordpress.org/support/users/thatsgame1/)
 * (@thatsgame1)
 * [12 years ago](https://wordpress.org/support/topic/error-since-wp-39/#post-4820158)
 * Can you tell me if this has been fixed in latest version yet? I run WP 3.9.
 *  [Israel Barragan](https://wordpress.org/support/users/reedyseth/)
 * (@reedyseth)
 * [12 years ago](https://wordpress.org/support/topic/error-since-wp-39/#post-4820159)
 * I have run some test using `mysql_query() and mysql_query_row()`. The plugin 
   works on WP 3.9.
 * I am developing a new feature running WP 3.9 and this is not causing any trouble,
   though I would change it in order to get rid of the deprecated functions.
 * You can update to the newest version of WP.
 * Regards.!!
 *  [Israel Barragan](https://wordpress.org/support/users/reedyseth/)
 * (@reedyseth)
 * [11 years, 12 months ago](https://wordpress.org/support/topic/error-since-wp-39/#post-4820180)
 * Hello, This fix is now available on version 140515. Please update.
 * Regards.!!
 *  Thread Starter [Grégory Viguier](https://wordpress.org/support/users/greglone/)
 * (@greglone)
 * [11 years, 12 months ago](https://wordpress.org/support/topic/error-since-wp-39/#post-4820182)
 * Thanks, Reedyseth!
 *  [Israel Barragan](https://wordpress.org/support/users/reedyseth/)
 * (@reedyseth)
 * [11 years, 12 months ago](https://wordpress.org/support/topic/error-since-wp-39/#post-4820183)
 * Thanks to you @ScreenfeedFr for caught it out !!
 * Best Regards.!!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Error since WP 3.9’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/subscribe-to-comments-reloaded_f0f9fc.
   svg)
 * [Subscribe To Comments Reloaded](https://wordpress.org/plugins/subscribe-to-comments-reloaded/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/subscribe-to-comments-reloaded/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/subscribe-to-comments-reloaded/)
 * [Active Topics](https://wordpress.org/support/plugin/subscribe-to-comments-reloaded/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/subscribe-to-comments-reloaded/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/subscribe-to-comments-reloaded/reviews/)

 * 6 replies
 * 3 participants
 * Last reply from: [Israel Barragan](https://wordpress.org/support/users/reedyseth/)
 * Last activity: [11 years, 12 months ago](https://wordpress.org/support/topic/error-since-wp-39/#post-4820183)
 * Status: resolved