From a188a9a305b25c89b18c71e29e348d9adcd29719 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Sun, 27 Jan 2013 07:28:16 -0500 Subject: [PATCH] Fix PHP Warning: Missing argument 2 for rcmail_output_html::get_skin_file() --- .htaccess | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.htaccess b/.htaccess index 704779e..25e153f 100644 --- a/.htaccess +++ b/.htaccess @@ -17,7 +17,7 @@ php_flag suhosin.session.encrypt Off #php_value session.cookie_path / -php_value session.auto_start 0 +php_flag session.auto_start Off php_value session.gc_maxlifetime 21600 php_value session.gc_divisor 500 php_value session.gc_probability 1 @@ -28,7 +28,10 @@ <IfModule mod_rewrite.c> RewriteEngine On -RewriteRule ^favicon.ico$ skins/default/images/favicon.ico +RewriteRule ^favicon\.ico$ skins/larry/images/favicon.ico +# security rules +RewriteRule .git - [F] +RewriteRule ^/?(README(.md)?|INSTALL|LICENSE|SQL|bin|CHANGELOG)$ - [F] </IfModule> <IfModule mod_deflate.c> @@ -47,4 +50,6 @@ FileETag MTime Size - +<IfModule mod_autoindex.c> +Options -Indexes +</ifModule> -- Gitblit v1.9.1