Merge branch '3.8' into 3.9

This commit is contained in:
Steve Boyd 2021-12-15 14:40:47 +13:00
commit 95f50f6ce2

View File

@ -33,7 +33,9 @@ class WebDAV
return true; return true;
} }
user_error("Got error from webdav server - " . $code, E_USER_ERROR); $err = curl_error($ch);
user_error("Got error from webdav server - " . $err, E_USER_ERROR);
} }
public static function mkdir($url) public static function mkdir($url)