Revision 556
Added by Matthias almost 17 years ago
trunk/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.7.0 ------------------------------------- |
14 | 14 |
18-Jan-2008 Matthias Gallas |
15 |
+ Added example .htaccess to parse .html files, fixed bug in changeset 555 |
|
15 | 16 |
! Revoked parts of changeset 547 and again introduced changeset 540 |
16 | 17 |
+ Added keywords to new files |
17 | 18 |
18-Jan-2008 Thomas Hornik |
trunk/wb/framework/functions.php | ||
---|---|---|
702 | 702 |
|
703 | 703 |
// Unlink the page access file and directory |
704 | 704 |
$directory = WB_PATH.PAGES_DIRECTORY.$link; |
705 |
$filename = $directory.'.php';
|
|
705 |
$filename = $directory.PAGE_EXTENSION;
|
|
706 | 706 |
$directory .= '/'; |
707 | 707 |
if(file_exists($filename)) { |
708 | 708 |
if(!is_writable(WB_PATH.PAGES_DIRECTORY.'/')) { |
trunk/wb/htaccess.txt | ||
---|---|---|
1 |
# Example .htaccess wich allows to parse .html as php |
|
2 |
AddType application/x-httpd-php .html |
|
0 | 3 |
Also available in: Unified diff
Added example .htaccess to parse .html files, fixed bug in changeset [555]