Title: WordPress 3.7
Last modified: August 21, 2016

---

# WordPress 3.7

 *  Resolved [robertozoia](https://wordpress.org/support/users/robertozoia/)
 * (@robertozoia)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/wordpress-37-44/)
 * Michael,
 * I installed the the plugin in WordPress 3.7.1. As far as I have tested, it works
   for the XML-RPC calls I am using (mostly get_post_meta, delete_post_meta, update_post_meta).
 * But I get a deprecation warning:
 * Deprecated: Call-time pass-by-reference has been deprecated in /home/(…)/wp-content/
   plugins/extended-xml-rpc-api/main.php on line 65
 * Any hint?
 * Thanks,
    RobertoZ
 * [http://wordpress.org/plugins/extended-xml-rpc-api/](http://wordpress.org/plugins/extended-xml-rpc-api/)

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

 *  Thread Starter [robertozoia](https://wordpress.org/support/users/robertozoia/)
 * (@robertozoia)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/wordpress-37-44/#post-4375184)
 * Michael,
 * After some research, I think the deprecation warning comes from the PHP version
   I am using (5.3.10) rather than from WordPress.
 * I edited line 65 of main.php and removed the pass-by-reference ampersand, and
   the warning disappeared. The change should not affect the behavior of the code(
   cfr [http://us1.php.net/call_user_func_array](http://us1.php.net/call_user_func_array)).
 * Changed:
 *     ```
       return call_user_func_array($method,&$args);
       ```
   
 * to
 *     ```
       return call_user_func_array($method,$args);
       ```
   
 *  Plugin Author [michaelgrosser](https://wordpress.org/support/users/michaelgrosser/)
 * (@michaelgrosser)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/wordpress-37-44/#post-4375254)
 * Hello,
    Thanks for the info. I’ll look at handling that a bit more gracefully
   in the plugin.
 *  Plugin Author [michaelgrosser](https://wordpress.org/support/users/michaelgrosser/)
 * (@michaelgrosser)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/wordpress-37-44/#post-4375436)
 * This is fixed in the newest release.

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

The topic ‘WordPress 3.7’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/extended-xml-rpc-api.svg)
 * [Extended API](https://wordpress.org/plugins/extended-xml-rpc-api/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/extended-xml-rpc-api/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/extended-xml-rpc-api/)
 * [Active Topics](https://wordpress.org/support/plugin/extended-xml-rpc-api/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/extended-xml-rpc-api/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/extended-xml-rpc-api/reviews/)

## Tags

 * [deprecated](https://wordpress.org/support/topic-tag/deprecated/)
 * [xmlrpc](https://wordpress.org/support/topic-tag/xmlrpc/)

 * 3 replies
 * 2 participants
 * Last reply from: [michaelgrosser](https://wordpress.org/support/users/michaelgrosser/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/wordpress-37-44/#post-4375436)
 * Status: resolved