Make WordPress Core


Ignore:
Timestamp:
07/17/2014 09:13:53 AM (12 years ago)
Author:
DrewAPicture
Message:

Fix syntax for single- and multi-line comments in wp-admin-directory files.

See #28931.

File:
1 edited

Legend:

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

    r28488 r29206  
    225225                        return false;
    226226
    227                 // try using rename first. if that fails (for example, source is read only) try copy
     227                // Try using rename first. if that fails (for example, source is read only) try copy.
    228228                if ( @rename($source, $destination) )
    229229                        return true;
     
    306306
    307307        public function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
    308                 // safe mode fails with a trailing slash under certain PHP versions.
     308                // Safe mode fails with a trailing slash under certain PHP versions.
    309309                $path = untrailingslashit($path);
    310310                if ( empty($path) )
Note: See TracChangeset for help on using the changeset viewer.