~canonical-sysadmins/wordpress/4.7.5

« back to all changes in this revision

Viewing changes to wp-admin/includes/class-ftp-pure.php

  • Committer: Haw Loeung
  • Date: 2016-12-13 06:56:21 UTC
  • mfrom: (1.1.20 upstream)
  • Revision ID: haw.loeung@canonical.com-20161213065621-8tcu7u7vlxgs2s81
Merge WP4.7 from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 * @link http://www.phpclasses.org/browse/package/1743.html Site
26
26
 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html
27
27
 */
28
 
class ftp extends ftp_base {
 
28
class ftp_pure extends ftp_base {
29
29
 
30
30
        function __construct($verb=FALSE, $le=FALSE) {
31
31
                parent::__construct(false, $verb, $le);
32
32
        }
33
33
 
34
 
        function ftp($verb=FALSE, $le=FALSE) {
35
 
                $this->__construct($verb, $le);
36
 
        }
37
 
 
38
34
// <!-- --------------------------------------------------------------------------------------- -->
39
35
// <!--       Private functions                                                                 -->
40
36
// <!-- --------------------------------------------------------------------------------------- -->