Make WordPress Core

Ticket #53793: class-wp-filesystem-base.php_53793_2.patch

File class-wp-filesystem-base.php_53793_2.patch, 1015 bytes (added by ankitmaru, 5 years ago)
  • src/wp-admin/includes/class-wp-filesystem-base.php

     
    408408         * @since 2.5.0
    409409         *
    410410         * @param string $mode string The *nix-style file permission.
    411          * @return int octal representation
     411         * @return string string representation
    412412         */
    413413        public function getnumchmodfromh( $mode ) {
    414414                $realmode = '';
     
    831831         *
    832832         *     @type string $name        Name of the file or directory.
    833833         *     @type string $perms       *nix representation of permissions.
    834          *     @type int    $permsn      Octal representation of permissions.
     834         *     @type string $permsn      String representation of permissions.
    835835         *     @type string $owner       Owner name or ID.
    836836         *     @type int    $size        Size of file in bytes.
    837837         *     @type int    $lastmodunix Last modified unix timestamp.