From e48f8945b32ab5b67f1cdeb53a37d3d196e31e4d Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Fri, 20 May 2016 05:19:01 -0400
Subject: [PATCH] Fix bug where message list columns could be in wrong order after column drag-n-drop and list sorting

---
 .htaccess |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.htaccess b/.htaccess
index 51cba8c..6f1d13d 100644
--- a/.htaccess
+++ b/.htaccess
@@ -6,15 +6,14 @@
 php_flag    log_errors      On
 # php_value    error_log    logs/errors
 
-php_value   upload_max_filesize    5M
-php_value   post_max_size          6M
+php_value   upload_max_filesize   5M
+php_value   post_max_size         6M
 php_value   memory_limit          64M
 
 php_flag    register_globals            Off
 php_flag    zlib.output_compression     Off
 php_flag    magic_quotes_gpc            Off
 php_flag    magic_quotes_runtime        Off
-php_flag    zend.ze1_compatibility_mode Off
 php_flag    suhosin.session.encrypt     Off
 
 #php_value   session.cookie_path     /
@@ -25,17 +24,18 @@
 </IfModule>
 
 <IfModule mod_rewrite.c>
+Options +FollowSymLinks
 RewriteEngine On
 RewriteRule ^favicon\.ico$ skins/larry/images/favicon.ico
 
 # security rules:
 # - deny access to files not containing a dot or starting with a dot
 #   in all locations except installer directory
-RewriteRule ^(?!installer)(\.?[^\.]+)$ - [F]
+RewriteRule ^(?!installer|\.well-known\/|[a-f0-9]{16})(\.?[^\.]+)$ - [F]
 # - deny access to some locations
 RewriteRule ^/?(\.git|\.tx|SQL|bin|config|logs|temp|tests|program\/(include|lib|localization|steps)) - [F]
 # - deny access to some documentation files
-RewriteRule /?(README\.md|composer\.json-dist|composer\.json|package\.xml)$ - [F]
+RewriteRule /?(README\.md|composer\.json-dist|composer\.json|package\.xml|Dockerfile)$ - [F]
 </IfModule>
 
 <IfModule mod_deflate.c>

--
Gitblit v1.9.1