#18680860 : fixed an easy-install error occurred when adjusting permission with ftp_site function (it does not occur if ftp_chmod function exists)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7283 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2010-02-06 14:20:18 +00:00
parent 7ce8708c9f
commit ba88ecc443

View file

@ -213,7 +213,7 @@
}
else
{
if(!ftp_site("CHMOD 755 ".$ftp_path))
if(!ftp_site($connection, "CHMOD 755 ".$ftp_path))
{
return new Object(-1, "msg_permission_adjust_failed");
}