aboutsummaryrefslogtreecommitdiffstats
path: root/community/nextcloud/nextcloud-1202-fix-6028.patch
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2017-08-25 14:54:33 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2017-08-25 14:54:45 +0000
commitd54f08bc7de4047eae688dc80764c6231e30526b (patch)
tree8a852702edb5a9b1e9dbce63877e8b98e97ae1ce /community/nextcloud/nextcloud-1202-fix-6028.patch
parent63f45cd8b7236b6c97d7ebdebbfcc729d9e1a427 (diff)
downloadaports-d54f08bc7de4047eae688dc80764c6231e30526b.tar.bz2
aports-d54f08bc7de4047eae688dc80764c6231e30526b.tar.xz
community/nextcloud: fix issue #6028
Missing icons in Files app after 12.0.1 upgrade
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
+ *