From 8f6d151fcb731b26c08882ec65eb3f81242c4ea1 Mon Sep 17 00:00:00 2001 From: mattab <matthieu.aubry@gmail.com> Date: Tue, 25 Jun 2013 22:43:05 +1200 Subject: [PATCH] * Adding htaccess to allow loading SVG+PNG logos on Settings page Refs #4019 --- .gitignore | 2 +- misc/user/.htaccess | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 misc/user/.htaccess diff --git a/.gitignore b/.gitignore index 753551f750..412b4910f8 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ tmp tmp/* .cache .externalToolBuilders -.htaccess .idea .metadata .settings @@ -65,3 +64,4 @@ docs/ composer.phar composer.lock vendor/ +/.htaccess 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 -- GitLab