diff --git a/ChangeLog b/ChangeLog index c00e89a24..f02ff5a40 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog $Id$ $Source$ +2006-09-27 Marc Delisle + * libraries/.htaccess: remove potential vulnerability (allow from none), + thanks to Michael Heimpold + 2006-09-23 Marc Delisle * libraries/common.lib.php: bug #1519859, avoid overflow on 64-bit machines diff --git a/libraries/.htaccess b/libraries/.htaccess index 47f32f26b..56baee608 100644 --- a/libraries/.htaccess +++ b/libraries/.htaccess @@ -1,4 +1,3 @@ # This folder does not require access over HTTP -Order deny,allow -Deny from all -Allow from none +# (the following directive denies access by default) +Order allow,deny