MDL-27530 The webdav-repository loads empty files

This commit is contained in:
Andreas Grabs 2011-05-16 15:35:16 +02:00
parent de584990c6
commit a193a0cfa1

View File

@ -61,15 +61,15 @@ class repository_webdav extends repository {
public function check_login() {
return true;
}
public function get_file($path, $title) {
public function get_file($url, $title) {
global $CFG;
$path = urldecode($path);
$url = urldecode($url);
$path = $this->prepare_file($title);
$buffer = '';
if (!$this->dav->open()) {
return false;
}
$this->dav->get($path, $buffer);
$this->dav->get($url, $buffer);
$fp = fopen($path, 'wb');
fwrite($fp, $buffer);
return array('path'=>$path);