Make WordPress Core


Ignore:
Timestamp:
08/16/2009 08:34:53 AM (16 years ago)
Author:
azaozz
Message:

WP_Filesystem fixes and phpdoc, props hakre dd32, see #10304

File:
1 edited

Legend:

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

    r10919 r11831  
    211211        }
    212212        if ( $loop )
    213             return false;//Prevent tihs function looping again.
     213            return false; //Prevent tihs function looping again.
    214214        //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.
    215215        return $this->search_for_folder($folder, '/', true);
     
    243243        elseif (($perms & 0x2000) == 0x2000) // Character special
    244244            $info = 'c';
    245         elseif (($perms & 0x1000) == 0x1000)// FIFO pipe
     245        elseif (($perms & 0x1000) == 0x1000) // FIFO pipe
    246246            $info = 'p';
    247247        else // Unknown
Note: See TracChangeset for help on using the changeset viewer.