Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc/user
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-06-25 14:43:05 +0400
committermattab <matthieu.aubry@gmail.com>2013-06-25 14:43:05 +0400
commit8f6d151fcb731b26c08882ec65eb3f81242c4ea1 (patch)
treec6ed487ee75cfdb6010e7f05d7298c97a264e4e4 /misc/user
parent99fa74dd4ce7050b0822fc10f37c0996f9439cb1 (diff)
* Adding htaccess to allow loading SVG+PNG logos on Settings page
Refs #4019
Diffstat (limited to 'misc/user')
-rw-r--r--misc/user/.htaccess6
1 files changed, 6 insertions, 0 deletions
diff --git a/misc/user/.htaccess b/misc/user/.htaccess
new file mode 100644
index 0000000000..d045168f0c
--- /dev/null
+++ b/misc/user/.htaccess
@@ -0,0 +1,6 @@
+<Files "*.png">
+ Allow from all
+</Files>
+<Files "*.svg">
+ Allow from all
+</Files> \ No newline at end of file