From 3e28fe3a6772ed9ba91ac530acd5ec49a0f2b0c2 Mon Sep 17 00:00:00 2001 From: canepan Date: Tue, 20 Oct 2015 18:31:08 +0200 Subject: [PATCH] Correct problem Leaving "$webDavAuthUrl" in constructor, leads to a non-working class --- lib/webdavauth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/webdavauth.php b/lib/webdavauth.php index 7c38559..65ea7b7 100644 --- a/lib/webdavauth.php +++ b/lib/webdavauth.php @@ -14,7 +14,7 @@ class WebDavAuth extends Base { public function __construct($webDavAuthUrl) { parent::__construct($webDavAuthUrl); - $this->$webDavAuthUrl =$webDavAuthUrl; + $this->webDavAuthUrl =$webDavAuthUrl; } /**