Changeset 45780
- Timestamp:
- 08/11/2019 04:17:16 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/ms-blogs.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-blogs.php
r45734 r45780 36 36 * @since MU (3.0.0) 37 37 * 38 * @param int $blog_id Blog ID 38 * @param int $blog_id Blog ID. 39 39 * @return string Full URL of the blog if found. Empty string if not. 40 40 */ … … 287 287 * @global wpdb $wpdb WordPress database abstraction object. 288 288 * 289 * @param int $blog_id Blog ID 289 * @param int $blog_id Blog ID. 290 290 * @param array $details Array of details keyed by blogs table field names. 291 291 * @return bool True if update succeeds, false otherwise. … … 661 661 * @since MU (3.0.0) 662 662 * 663 * @param int $id The blog id664 * @return string Whether the blog is archived or not 663 * @param int $id Blog ID. 664 * @return string Whether the blog is archived or not. 665 665 */ 666 666 function is_archived( $id ) { … … 673 673 * @since MU (3.0.0) 674 674 * 675 * @param int $id The blog id676 * @param string $archived The new status 675 * @param int $id Blog ID. 676 * @param string $archived The new status. 677 677 * @return string $archived 678 678 */ … … 690 690 * @global wpdb $wpdb WordPress database abstraction object. 691 691 * 692 * @param int $blog_id BLog ID693 * @param string $pref A field name694 * @param string $value Value for $pref695 * @param null $deprecated 692 * @param int $blog_id Blog ID. 693 * @param string $pref Field name. 694 * @param string $value Field value. 695 * @param null $deprecated Not used. 696 696 * @return string|false $value 697 697 */ … … 728 728 * @global wpdb $wpdb WordPress database abstraction object. 729 729 * 730 * @param int $id The blog id731 * @param string $pref A field name730 * @param int $id Blog ID. 731 * @param string $pref Field name. 732 732 * @return bool|string|null $value 733 733 */ … … 750 750 * @global wpdb $wpdb WordPress database abstraction object. 751 751 * 752 * @param mixed $deprecated Not used 753 * @param int $start The offset 754 * @param int $quantity The maximum number of blogs to retrieve. Default is 40. 755 * @return array The list of blogs 752 * @param mixed $deprecated Not used. 753 * @param int $start Optional. Number of blogs to offset the query. Used to build LIMIT clause. 754 * Can be used for pagination. Default 0. 755 * @param int $quantity Optional. The maximum number of blogs to retrieve. Default 40. 756 * @return array The list of blogs. 756 757 */ 757 758 function get_last_updated( $deprecated = '', $start = 0, $quantity = 40 ) {
Note: See TracChangeset
for help on using the changeset viewer.