Plugin Install GSOC project first code drop. Props DD32 see #6015.

git-svn-id: http://svn.automattic.com/wordpress/trunk@8540 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi
2008-08-04 21:01:09 +00:00
parent 7f0c014f36
commit 35f46f0d4b
22 changed files with 1026 additions and 129 deletions

View File

@@ -119,7 +119,7 @@ class WP_Filesystem_FTPext extends WP_Filesystem_Base{
return $ret;
}
function cwd() {
$cwd = ftp_pwd($this->link);
$cwd = @ftp_pwd($this->link);
if( $cwd )
$cwd = trailingslashit($cwd);
return $cwd;