Make WordPress Core

Changeset 15756


Ignore:
Timestamp:
10/08/2010 02:35:06 AM (15 years ago)
Author:
nacin
Message:

s/Wether/Whether/

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/default-list-tables.php

    r15746 r15756  
    1313
    1414    /**
    15      * Wether the items should be displayed hierarchically or linearly
     15     * Whether the items should be displayed hierarchically or linearly
    1616     *
    1717     * @since 3.1.0
  • trunk/wp-admin/includes/list-table.php

    r15657 r15756  
    154154
    155155    /**
    156      * Wether the table has items to display or not
     156     * Whether the table has items to display or not
    157157     *
    158158     * @since 3.1.0
     
    541541     * @access protected
    542542     *
    543      * @param bool $with_id Wether to set the id attribute or not
     543     * @param bool $with_id Whether to set the id attribute or not
    544544     */
    545545    function print_column_headers( $with_id = true ) {
  • trunk/wp-includes/classes.php

    r15755 r15756  
    576576     *      Possible values: 'IN' and 'NOT IN'.
    577577     *      Default: 'IN'
    578      * - 'include_children' bool (optional) Wether to include child terms.
     578     * - 'include_children' bool (optional) Whether to include child terms.
    579579     *      Default: true
    580580     *
  • trunk/wp-includes/ms-blogs.php

    r15676 r15756  
    422422 * @param string $key The option key
    423423 * @param mixed $value The option value
    424  * @param bool $refresh Wether to refresh blog details or not
     424 * @param bool $refresh Whether to refresh blog details or not
    425425 */
    426426function update_blog_option( $id, $key, $value, $refresh = true ) {
     
    450450 *
    451451 * @param int $new_blog The id of the blog you want to switch to. Default: current blog
    452  * @param bool $validate Wether to check if $new_blog exists before proceeding
     452 * @param bool $validate Whether to check if $new_blog exists before proceeding
    453453 * @return bool True on success, False if the validation failed
    454454 */
     
    587587 *
    588588 * @param int $id The blog id
    589  * @return string Wether the blog is archived or not
     589 * @return string Whether the blog is archived or not
    590590 */
    591591function is_archived( $id ) {
  • trunk/wp-includes/taxonomy.php

    r15734 r15756  
    441441 * @param string|array $taxonomies String of taxonomy name or Array of string values of taxonomy names
    442442 * @param array|string $args
    443  *   'include_children' bool Wether to include term children (hierarchical taxonomies only)
     443 *   'include_children' bool Whether to include term children (hierarchical taxonomies only)
    444444 *   'field' string Which term field is being used. Can be 'term_id', 'slug' or 'name'
    445445 *   'operator' string Can be 'IN' and 'NOT IN'
    446  *   'do_query' bool Wether to execute the query or return the SQL string
     446 *   'do_query' bool Whether to execute the query or return the SQL string
    447447 *
    448448 * @return WP_Error If the taxonomy does not exist
Note: See TracChangeset for help on using the changeset viewer.