Changeset 32990 for trunk/src/wp-admin/includes/class-ftp.php
- Timestamp:
- 06/28/2015 03:26:41 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-ftp.php
r30311 r32990 122 122 123 123 /* Constructor */ 124 function ftp_base($port_mode=FALSE) {125 $this->__construct($port_mode);126 }127 128 124 function __construct($port_mode=FALSE, $verb=FALSE, $le=FALSE) { 129 125 $this->LocalEcho=$le; … … 156 152 if(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') $this->OS_local=FTP_OS_Windows; 157 153 elseif(strtoupper(substr(PHP_OS, 0, 3)) === 'MAC') $this->OS_local=FTP_OS_Mac; 154 } 155 156 function ftp_base($port_mode=FALSE) { 157 $this->__construct($port_mode); 158 158 } 159 159
Note: See TracChangeset
for help on using the changeset viewer.