Make WordPress Core

Ticket #39405: 39405.diff

File 39405.diff, 536 bytes (added by tymvie, 8 years ago)
  • src/wp-admin/includes/class-wp-filesystem-ftpsockets.php

     
    470470         *
    471471         * @param string $path
    472472         * @param bool $recursive
     473         * @return bool
    473474         */
    474475        public function rmdir($path, $recursive = false ) {
    475                 $this->delete($path, $recursive);
     476                return $this->delete($path, $recursive);
    476477        }
    477478
    478479        /**