]> source.dussan.org Git - nextcloud-server.git/commitdiff
CSS is now loaded directly instead via PHP
authorLukas Reschke <lukas@statuscode.ch>
Fri, 28 Feb 2014 10:14:18 +0000 (11:14 +0100)
committerLukas Reschke <lukas@statuscode.ch>
Fri, 28 Feb 2014 10:14:18 +0000 (11:14 +0100)
269f24cf9617397aaf501b27ec1af2c8e3154cf8 was not changed in setup.php which prevented loading of CSS files in some environments (e.g. my local setup) for apps.

lib/private/setup.php

index 3906204bda3ccaa09e43108d53cd82b0250f79c9..0d5bf424b332e74e11284bd41eae0bd067b830e4 100644 (file)
@@ -147,7 +147,7 @@ class OC_Setup {
                $content.= "RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]\n";
                $content.= "RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]\n";
                $content.= "RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]\n";
-               $content.= "RewriteRule ^apps/([^/]*)/(.*\.(css|php))$ index.php?app=$1&getfile=$2 [QSA,L]\n";
+               $content.= "RewriteRule ^apps/([^/]*)/(.*\.(php))$ index.php?app=$1&getfile=$2 [QSA,L]\n";
                $content.= "RewriteRule ^remote/(.*) remote.php [QSA,L]\n";
                $content.= "</IfModule>\n";
                $content.= "<IfModule mod_mime.c>\n";