wp/wp-admin/includes/class-ftp-pure.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
     6  * @since 2.5.0
     6  * @since 2.5.0
     7  *
     7  *
     8  * @version 1.0
     8  * @version 1.0
     9  * @copyright Alexey Dotsenko
     9  * @copyright Alexey Dotsenko
    10  * @author Alexey Dotsenko
    10  * @author Alexey Dotsenko
    11  * @link http://www.phpclasses.org/browse/package/1743.html Site
    11  * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html
    12  * @license LGPL http://www.opensource.org/licenses/lgpl-license.html
    12  * @license LGPL https://opensource.org/licenses/lgpl-license.html
    13  */
    13  */
    14 
    14 
    15 /**
    15 /**
    16  * FTP implementation using fsockopen to connect.
    16  * FTP implementation using fsockopen to connect.
    17  *
    17  *
    20  * @since 2.5.0
    20  * @since 2.5.0
    21  *
    21  *
    22  * @version 1.0
    22  * @version 1.0
    23  * @copyright Alexey Dotsenko
    23  * @copyright Alexey Dotsenko
    24  * @author Alexey Dotsenko
    24  * @author Alexey Dotsenko
    25  * @link http://www.phpclasses.org/browse/package/1743.html Site
    25  * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html
    26  * @license LGPL http://www.opensource.org/licenses/lgpl-license.html
    26  * @license LGPL https://opensource.org/licenses/lgpl-license.html
    27  */
    27  */
    28 class ftp_pure extends ftp_base {
    28 class ftp_pure extends ftp_base {
    29 
    29 
    30 	function __construct($verb=FALSE, $le=FALSE) {
    30 	function __construct($verb=FALSE, $le=FALSE) {
    31 		parent::__construct(false, $verb, $le);
    31 		parent::__construct(false, $verb, $le);