Add phpDoc with copyright and licencing info to external ftp libs. Fixes #6155 props DD32.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7241 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0b22d34ee6
commit
bd9c890f3d
|
@ -1,4 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* PemFTP - A Ftp implementation in pure PHP
|
||||
*
|
||||
* @package PemFTP
|
||||
* @since 2.5
|
||||
*
|
||||
* @version 1.0
|
||||
* @copyright Alexey Dotsenko
|
||||
* @author Alexey Dotsenko
|
||||
* @link http://www.phpclasses.org/browse/package/1743.html Site
|
||||
* @license LPGPL License http://www.opensource.org/licenses/lgpl-license.html
|
||||
*/
|
||||
class ftp extends ftp_base {
|
||||
|
||||
function ftp($verb=FALSE, $le=FALSE) {
|
||||
|
|
|
@ -1,4 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* PemFTP - A Ftp implementation in pure PHP
|
||||
*
|
||||
* @package PemFTP
|
||||
* @since 2.5
|
||||
*
|
||||
* @version 1.0
|
||||
* @copyright Alexey Dotsenko
|
||||
* @author Alexey Dotsenko
|
||||
* @link http://www.phpclasses.org/browse/package/1743.html Site
|
||||
* @license LPGPL License http://www.opensource.org/licenses/lgpl-license.html
|
||||
*/
|
||||
class ftp extends ftp_base {
|
||||
|
||||
function ftp($verb=FALSE, $le=FALSE) {
|
||||
|
|
|
@ -1,4 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* PemFTP - A Ftp implementation in pure PHP
|
||||
*
|
||||
* @package PemFTP
|
||||
* @since 2.5
|
||||
*
|
||||
* @version 1.0
|
||||
* @copyright Alexey Dotsenko
|
||||
* @author Alexey Dotsenko
|
||||
* @link http://www.phpclasses.org/browse/package/1743.html Site
|
||||
* @license LPGPL License http://www.opensource.org/licenses/lgpl-license.html
|
||||
*/
|
||||
if(!defined('CRLF')) define('CRLF',"\r\n");
|
||||
if(!defined("FTP_AUTOASCII")) define("FTP_AUTOASCII", -1);
|
||||
if(!defined("FTP_BINARY")) define("FTP_BINARY", 1);
|
||||
|
|
Loading…
Reference in New Issue