Changeset 21664 for trunk/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 08/30/2012 01:33:00 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-xmlrpc-server.php
r21651 r21664 3222 3222 $domain = $current_blog->domain; 3223 3223 $path = $current_blog->path . 'xmlrpc.php'; 3224 $protocol = is_ssl() ? 'https' : 'http'; 3225 3226 $rpc = new IXR_Client("$protocol://{$domain}{$path}"); 3224 3225 $rpc = new IXR_Client( set_url_scheme( "http://{$domain}{$path}" ) ); 3227 3226 $rpc->query('wp.getUsersBlogs', $args[1], $args[2]); 3228 3227 $blogs = $rpc->getResponse();
Note: See TracChangeset
for help on using the changeset viewer.