From 7cecf8bb7cb13ce9d573867572256a1b99352dc9 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Mon, 10 May 2010 16:21:43 -0400 Subject: [PATCH] fix stupid bug, bumping version number --- CHANGELOG | 2 ++ lib/apache/permissions.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 71af18c..761bbaa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1 +1,3 @@ +v0.1.1. Stupid bug in initial release. + v0.1. Initial release, support for many of the Apache config basics. diff --git a/lib/apache/permissions.rb b/lib/apache/permissions.rb index b183c2a..0e42214 100644 --- a/lib/apache/permissions.rb +++ b/lib/apache/permissions.rb @@ -44,7 +44,7 @@ module Apache # Block all .ht* files def no_htfiles! - files_match %{^\.ht} do + files_match %r{^\.ht} do deny_from_all satisfy :all end