Make WordPress Core


Ignore:
Timestamp:
10/25/2011 04:25:52 AM (13 years ago)
Author:
dd32
Message:

Themes not within a subdirectory of the zip need to have the working directory Trailingslashed. See #14999

File:
1 edited

Legend:

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

    r19054 r19057  
    195195        elseif ( count($source_files) == 0 )
    196196            return new WP_Error('incompatible_archive', $this->strings['incompatible_archive']); //There are no files?
    197         //else //Its only a single file, The upgrader will use the foldername of this file as the destination folder. foldername is based on zip filename.
     197        else //Its only a single file, The upgrader will use the foldername of this file as the destination folder. foldername is based on zip filename.
     198            $source = trailingslashit($source);
    198199
    199200        //Hook ability to change the source file location..
Note: See TracChangeset for help on using the changeset viewer.