From 513ead7b25b45b7c54c4d651b24a3edd17d0b9b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 23 Nov 2005 19:16:25 +0000 Subject: [PATCH] Deny access to libraries folder over HTTP. --- ChangeLog | 1 + libraries/.htaccess | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 libraries/.htaccess diff --git a/ChangeLog b/ChangeLog index 5a8a4816b..1942119fc 100755 --- a/ChangeLog +++ b/ChangeLog @@ -63,6 +63,7 @@ $Source$ tbl_change.php, tbl_properties.inc.php, libraries/display_tbl_links.lib.php, test/theme.php: Move javascript stuff out of libraries folder. + * libraries/.htaccess: Deny access to libraries folder over HTTP. 2005-11-22 Sebastian Mendel * added test/theme.php: for testing themes diff --git a/libraries/.htaccess b/libraries/.htaccess new file mode 100644 index 000000000..47f32f26b --- /dev/null +++ b/libraries/.htaccess @@ -0,0 +1,4 @@ +# This folder does not require access over HTTP +Order deny,allow +Deny from all +Allow from none