Changeset 5768 for branches/2.0/xmlrpc.php
- Timestamp:
- 06/27/07 08:22:02 (1 year ago)
- Files:
-
- branches/2.0/xmlrpc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/xmlrpc.php
r5099 r5768 432 432 return new IXR_Error(401, 'Sorry, you do not have the right to edit this post.'); 433 433 434 extract($actual_post );434 extract($actual_post, EXTR_SKIP); 435 435 436 436 if ( ('publish' == $post_status) && !current_user_can('publish_posts') ) … … 598 598 599 599 $postdata = wp_get_single_post($post_ID, ARRAY_A); 600 extract($postdata);601 600 $this->escape($postdata); 601 extract($postdata, EXTR_SKIP); 602 602 603 603 $post_title = $content_struct['title'];
