Changeset 11831 for trunk/wp-admin/includes/class-wp-filesystem-base.php
- Timestamp:
- 08/16/2009 08:34:53 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-filesystem-base.php
r10919 r11831 211 211 } 212 212 if ( $loop ) 213 return false; //Prevent tihs function looping again.213 return false; //Prevent tihs function looping again. 214 214 //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. 215 215 return $this->search_for_folder($folder, '/', true); … … 243 243 elseif (($perms & 0x2000) == 0x2000) // Character special 244 244 $info = 'c'; 245 elseif (($perms & 0x1000) == 0x1000) // FIFO pipe245 elseif (($perms & 0x1000) == 0x1000) // FIFO pipe 246 246 $info = 'p'; 247 247 else // Unknown
Note: See TracChangeset
for help on using the changeset viewer.