summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-10-23 21:20:08 +0200
committerAndreas Gohr <andi@splitbrain.org>2006-10-23 21:20:08 +0200
commitaa248fb5900797231e058b84f8c169b16a677e36 (patch)
tree54a2da5ad33c1706e95f0bac9896cee1382f2db4 /install.php
parente16d739ea3251725f1d40d91ad2eb41b7cc905f9 (diff)
downloadrpg-aa248fb5900797231e058b84f8c169b16a677e36.tar.gz
rpg-aa248fb5900797231e058b84f8c169b16a677e36.tar.bz2
ignore line endings when checking the config file hash for the installer
darcs-hash:20061023192008-7ad00-c9772b42081c9c7fcc64e37eb90a2ea200b21850.gz
Diffstat (limited to 'install.php')
-rw-r--r--install.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/install.php b/install.php
index 224388d44..33594e491 100644
--- a/install.php
+++ b/install.php
@@ -358,7 +358,8 @@ function check_configs(){
// main dokuwiki config file (conf/dokuwiki.php) must not have been modified
- $installation_hash = md5(@file_get_contents(DOKU_CONF.'dokuwiki.php'));
+ $installation_hash = md5(preg_replace("/(\015\012)|(\015)/","\012",
+ @file_get_contents(DOKU_CONF.'dokuwiki.php')));
if (!in_array($installation_hash, $dokuwiki_hash)) {
$error[] = sprintf($lang['i_badhash'],$installation_hash);
$ok = false;