Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcanepan <canepan@users.noreply.github.com>2015-10-20 19:31:08 +0300
committercanepan <canepan@users.noreply.github.com>2015-10-20 19:31:08 +0300
commit854e4a5d514fc973d2a9f6e66a07989d47e86bc9 (patch)
treeddafdfaec7c4e0bd1c1e5132e5c443c03adfd3f6 /user_external
parentabffb661e5627d13516721db622f6b8529973dab (diff)
Correct problem
Leaving "$webDavAuthUrl" in constructor, leads to a non-working class
Diffstat (limited to 'user_external')
-rw-r--r--user_external/lib/webdavauth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_external/lib/webdavauth.php b/user_external/lib/webdavauth.php
index 7c38559d5..65ea7b7d8 100644
--- a/user_external/lib/webdavauth.php
+++ b/user_external/lib/webdavauth.php
@@ -14,7 +14,7 @@ class WebDavAuth extends Base {
public function __construct($webDavAuthUrl) {
parent::__construct($webDavAuthUrl);
- $this->$webDavAuthUrl =$webDavAuthUrl;
+ $this->webDavAuthUrl =$webDavAuthUrl;
}
/**