Changeset 5768
- Timestamp:
- 06/27/07 08:22:02 (1 year ago)
- Files:
-
- branches/2.0/wp-includes/version.php (modified) (1 diff)
- branches/2.0/xmlrpc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/version.php
r5738 r5768 3 3 // This just holds the version number, in a separate file so we can bump it without cluttering the SVN 4 4 5 $wp_version = '2.0.11-RC 4';5 $wp_version = '2.0.11-RC5'; 6 6 $wp_db_version = 3441; 7 7 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'];
