Changeset 15756
- Timestamp:
- 10/08/2010 02:35:06 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/default-list-tables.php
r15746 r15756 13 13 14 14 /** 15 * W ether the items should be displayed hierarchically or linearly15 * Whether the items should be displayed hierarchically or linearly 16 16 * 17 17 * @since 3.1.0 -
trunk/wp-admin/includes/list-table.php
r15657 r15756 154 154 155 155 /** 156 * W ether the table has items to display or not156 * Whether the table has items to display or not 157 157 * 158 158 * @since 3.1.0 … … 541 541 * @access protected 542 542 * 543 * @param bool $with_id W ether to set the id attribute or not543 * @param bool $with_id Whether to set the id attribute or not 544 544 */ 545 545 function print_column_headers( $with_id = true ) { -
trunk/wp-includes/classes.php
r15755 r15756 576 576 * Possible values: 'IN' and 'NOT IN'. 577 577 * Default: 'IN' 578 * - 'include_children' bool (optional) W ether to include child terms.578 * - 'include_children' bool (optional) Whether to include child terms. 579 579 * Default: true 580 580 * -
trunk/wp-includes/ms-blogs.php
r15676 r15756 422 422 * @param string $key The option key 423 423 * @param mixed $value The option value 424 * @param bool $refresh W ether to refresh blog details or not424 * @param bool $refresh Whether to refresh blog details or not 425 425 */ 426 426 function update_blog_option( $id, $key, $value, $refresh = true ) { … … 450 450 * 451 451 * @param int $new_blog The id of the blog you want to switch to. Default: current blog 452 * @param bool $validate W ether to check if $new_blog exists before proceeding452 * @param bool $validate Whether to check if $new_blog exists before proceeding 453 453 * @return bool True on success, False if the validation failed 454 454 */ … … 587 587 * 588 588 * @param int $id The blog id 589 * @return string W ether the blog is archived or not589 * @return string Whether the blog is archived or not 590 590 */ 591 591 function is_archived( $id ) { -
trunk/wp-includes/taxonomy.php
r15734 r15756 441 441 * @param string|array $taxonomies String of taxonomy name or Array of string values of taxonomy names 442 442 * @param array|string $args 443 * 'include_children' bool W ether to include term children (hierarchical taxonomies only)443 * 'include_children' bool Whether to include term children (hierarchical taxonomies only) 444 444 * 'field' string Which term field is being used. Can be 'term_id', 'slug' or 'name' 445 445 * 'operator' string Can be 'IN' and 'NOT IN' 446 * 'do_query' bool W ether to execute the query or return the SQL string446 * 'do_query' bool Whether to execute the query or return the SQL string 447 447 * 448 448 * @return WP_Error If the taxonomy does not exist
Note: See TracChangeset
for help on using the changeset viewer.