X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/177fd6fefd2e3d5a0ea6591c71d660cabdb3c1a4..53f4633144ed68c8b8fb5861f992b5489894a940:/wp-admin/includes/class-ftp-pure.php diff --git a/wp-admin/includes/class-ftp-pure.php b/wp-admin/includes/class-ftp-pure.php index 5ef92bfd..7146c962 100644 --- a/wp-admin/includes/class-ftp-pure.php +++ b/wp-admin/includes/class-ftp-pure.php @@ -3,24 +3,38 @@ * PemFTP - A Ftp implementation in pure PHP * * @package PemFTP - * @since 2.5 + * @since 2.5.0 * * @version 1.0 * @copyright Alexey Dotsenko * @author Alexey Dotsenko * @link http://www.phpclasses.org/browse/package/1743.html Site - * @license LGPL License http://www.opensource.org/licenses/lgpl-license.html + * @license LGPL http://www.opensource.org/licenses/lgpl-license.html */ -class ftp extends ftp_base { - function ftp($verb=FALSE, $le=FALSE) { - $this->__construct($verb, $le); - } +/** + * FTP implementation using fsockopen to connect. + * + * @package PemFTP + * @subpackage Pure + * @since 2.5.0 + * + * @version 1.0 + * @copyright Alexey Dotsenko + * @author Alexey Dotsenko + * @link http://www.phpclasses.org/browse/package/1743.html Site + * @license LGPL http://www.opensource.org/licenses/lgpl-license.html + */ +class ftp extends ftp_base { function __construct($verb=FALSE, $le=FALSE) { parent::__construct(false, $verb, $le); } + function ftp($verb=FALSE, $le=FALSE) { + $this->__construct($verb, $le); + } + // // // @@ -172,4 +186,5 @@ class ftp extends ftp_base { } } } + ?>