diff options
Diffstat (limited to 'flakes/mypackages')
-rw-r--r-- | flakes/mypackages/pkgs/shaarli/shaarli_ldap.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flakes/mypackages/pkgs/shaarli/shaarli_ldap.patch b/flakes/mypackages/pkgs/shaarli/shaarli_ldap.patch index e66a54f..2f6c19e 100644 --- a/flakes/mypackages/pkgs/shaarli/shaarli_ldap.patch +++ b/flakes/mypackages/pkgs/shaarli/shaarli_ldap.patch | |||
@@ -132,12 +132,12 @@ index 32aaea4..99efc15 100644 | |||
132 | - $this->setEmpty('resource.history', 'data/history.php'); | 132 | - $this->setEmpty('resource.history', 'data/history.php'); |
133 | + if ($this->userSpace === null) { | 133 | + if ($this->userSpace === null) { |
134 | + $data = 'data'; | 134 | + $data = 'data'; |
135 | + $tmp = 'tmp'; | 135 | + $tmp = 'tmp/'; |
136 | + $cache = 'cache'; | 136 | + $cache = 'cache'; |
137 | + $pagecache = 'pagecache'; | 137 | + $pagecache = 'pagecache'; |
138 | + } else { | 138 | + } else { |
139 | + $data = 'data/' . ($this->userSpace); | 139 | + $data = 'data/' . ($this->userSpace); |
140 | + $tmp = 'tmp/' . ($this->userSpace); | 140 | + $tmp = 'tmp/' . ($this->userSpace) . '/'; |
141 | + $cache = 'cache/' . ($this->userSpace); | 141 | + $cache = 'cache/' . ($this->userSpace); |
142 | + $pagecache = 'pagecache/' . ($this->userSpace); | 142 | + $pagecache = 'pagecache/' . ($this->userSpace); |
143 | + } | 143 | + } |