Ticket #14401: 14401.diff
File 14401.diff, 554 bytes (added by , 14 years ago) |
---|
-
class-wp-filesystem-base.php
152 152 if ( isset($this->cache[ $folder ] ) ) 153 153 return $this->cache[ $folder ]; 154 154 155 if ( $this-> exists($folder) ) { //Folder exists at that absolute path.155 if ( $this->is_dir($folder) ) { //Folder exists at that absolute path. 156 156 $folder = trailingslashit($folder); 157 157 $this->cache[ $folder ] = $folder; 158 158 return $folder;