aboutsummaryrefslogtreecommitdiffstats
path: root/community/nextcloud/nextcloud-1202-fix-6028.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/nextcloud/nextcloud-1202-fix-6028.patch')
-rw-r--r--community/nextcloud/nextcloud-1202-fix-6028.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/community/nextcloud/nextcloud-1202-fix-6028.patch b/community/nextcloud/nextcloud-1202-fix-6028.patch
new file mode 100644
index 0000000000..bc7f64f796
--- /dev/null
+++ b/community/nextcloud/nextcloud-1202-fix-6028.patch
@@ -0,0 +1,22 @@
+--- a/lib/private/Template/CSSResourceLocator.php
++++ b/lib/private/Template/CSSResourceLocator.php
+@@ -117,7 +117,7 @@
+ parent::append($root, $file, $webRoot, $throw);
+ } else {
+ if (!$webRoot) {
+- $tmpRoot = realpath($root);
++ $tmpRoot = $root;
+ /*
+ * traverse the potential web roots upwards in the path
+ *
+--- a/lib/private/Template/ResourceLocator.php
++++ b/lib/private/Template/ResourceLocator.php
+@@ -125,7 +125,7 @@
+ }
+
+ if (!$webRoot) {
+- $tmpRoot = realpath($root);
++ $tmpRoot = $root;
+ /*
+ * traverse the potential web roots upwards in the path
+ *