Changeset 18633 for trunk/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 09/03/2011 04:02:41 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-xmlrpc-server.php
r18584 r18633 9 9 * WordPress XMLRPC server implementation. 10 10 * 11 * Implements compat ability for Blogger API, MetaWeblog API, MovableType, and11 * Implements compatibility for Blogger API, MetaWeblog API, MovableType, and 12 12 * pingback. Additional WordPress API for managing comments, pages, posts, 13 13 * options, etc. … … 748 748 "); 749 749 750 // The date needs to be format ed properly.750 // The date needs to be formatted properly. 751 751 $num_pages = count($page_list); 752 752 for ( $i = 0; $i < $num_pages; $i++ ) { … … 1552 1552 * - password 1553 1553 * - attachment_id 1554 * @return array. Assoc ciative array containing:1554 * @return array. Associative array containing: 1555 1555 * - 'date_created_gmt' 1556 1556 * - 'parent' … … 1662 1662 1663 1663 /** 1664 * Retri ves a list of post formats used by the site1664 * Retrieves a list of post formats used by the site 1665 1665 * 1666 1666 * @since 3.1 … … 3446 3446 // an #anchor is there, it's either... 3447 3447 if ( intval($urltest['fragment']) ) { 3448 // ...an integer #XXXX (simpl iest case)3448 // ...an integer #XXXX (simplest case) 3449 3449 $post_ID = (int) $urltest['fragment']; 3450 3450 $way = 'from the fragment (numeric)';
Note: See TracChangeset
for help on using the changeset viewer.