mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
Merge pull request #300 from chrometoasters/pulls/webdav-error-message
ENH Show error message instead of error code on WebDAV check
This commit is contained in:
commit
94bb78fc7f
@ -33,7 +33,9 @@ class WebDAV
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user