Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #29628


Ignore:
Timestamp:
09/12/2014 12:54:38 AM (10 years ago)
Author:
dd32
Comment:

Although this is an external library PemFTP it appears to be abandoned for development now, so we should probably just go ahead and make any alterations we need.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29628

    • Property Component changed from General to Filesystem API
  • Ticket #29628 – Description

    initial v1  
    22
    33where is:
     4{{{
    45        function nlist($pathname="") {
    56                return $this->_list(($arg?" ".$arg:"").($pathname?" ".$pathname:""), "NLST", "nlist");
    67        }
     8}}}
    79should be:
     10{{{
    811        function nlist($pathname="", arg="") {
    912                return $this->_list(($arg?" ".$arg:"").($pathname?" ".$pathname:""), "NLST", "nlist");
    1013        }
     14}}}