Make WordPress Core


Ignore:
Timestamp:
05/14/2011 09:56:59 AM (13 years ago)
Author:
westi
Message:

More phpdoc typo fixes. See #17414 props Utkarsh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-filesystem-base.php

    r17579 r17926  
    2222    var $verbose = false;
    2323    /**
    24      * Cached list of local filepaths to maped remote filepaths.
     24     * Cached list of local filepaths to mapped remote filepaths.
    2525     *
    2626     * @since 2.7
     
    216216        }
    217217
    218         //Only check this as a last resort, to prevent locating the incorrect install. All above proceeedures will fail quickly if this is the right branch to take.
     218        //Only check this as a last resort, to prevent locating the incorrect install. All above procedures will fail quickly if this is the right branch to take.
    219219        if (isset( $files[ $last_path ] ) ) {
    220220            if ( $this->verbose )
     
    223223        }
    224224        if ( $loop )
    225             return false; //Prevent tihs function looping again.
     225            return false; //Prevent this function from looping again.
    226226        //As an extra last resort, Change back to / if the folder wasnt found. This comes into effect when the CWD is /home/user/ but WP is at /var/www/.... mainly dedicated setups.
    227227        return $this->search_for_folder($folder, '/', true);
Note: See TracChangeset for help on using the changeset viewer.