Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 555)
+++ trunk/CHANGELOG	(revision 556)
@@ -12,6 +12,7 @@
 
 ------------------------------------- 2.7.0 -------------------------------------
 18-Jan-2008 Matthias Gallas
++	Added example .htaccess to parse .html files, fixed bug in changeset 555
 !	Revoked parts of changeset 547 and again introduced changeset 540
 +	Added keywords to new files
 18-Jan-2008 Thomas Hornik
Index: trunk/wb/framework/functions.php
===================================================================
--- trunk/wb/framework/functions.php	(revision 555)
+++ trunk/wb/framework/functions.php	(revision 556)
@@ -702,7 +702,7 @@
 	
 	// Unlink the page access file and directory
 	$directory = WB_PATH.PAGES_DIRECTORY.$link;
-	$filename = $directory.'.php';
+	$filename = $directory.PAGE_EXTENSION;
 	$directory .= '/';
 	if(file_exists($filename)) {
 		if(!is_writable(WB_PATH.PAGES_DIRECTORY.'/')) {
Index: trunk/wb/htaccess.txt
===================================================================
--- trunk/wb/htaccess.txt	(nonexistent)
+++ trunk/wb/htaccess.txt	(revision 556)
@@ -0,0 +1,2 @@
+# Example .htaccess wich allows to parse .html as php
+AddType application/x-httpd-php .html
\ No newline at end of file

Property changes on: trunk/wb/htaccess.txt
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
