diff options
author | chris <chris@jalakai.co.uk> | 2006-09-17 17:42:08 +0200 |
---|---|---|
committer | chris <chris@jalakai.co.uk> | 2006-09-17 17:42:08 +0200 |
commit | 4c39371e0e36b4fbbb44fd08c2017226e8f260a4 (patch) | |
tree | 6ea2d1aec7ec7f939dcefd37e596e71d27ad8cfa | |
parent | 587afae52831d071a26cff41edc8c5a9d132fe2c (diff) | |
download | rpg-4c39371e0e36b4fbbb44fd08c2017226e8f260a4.tar.gz rpg-4c39371e0e36b4fbbb44fd08c2017226e8f260a4.tar.bz2 |
install script update I
- update hash for devel dokuwiki.php
- remove changes.log creation, its no longer required
- add allowdebug
darcs-hash:20060917154208-9b6ab-612815c241dbff1c2c1c99f0ca1da8bce6c9538e.gz
-rw-r--r-- | install.php | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/install.php b/install.php index f004ad335..b00a231d6 100644 --- a/install.php +++ b/install.php @@ -40,7 +40,7 @@ $dokuwiki_hash = array( '2005-09-22' => 'e33223e957b0b0a130d0520db08f8fb7', '2006-03-05' => '51295727f79ab9af309a2fd9e0b61acc', '2006-03-09' => '51295727f79ab9af309a2fd9e0b61acc', - 'devel' => '732131839d559198b985e183eefe9a63', + 'devel' => 'd28d181b4f5c6a07be223c93502013c2', ); @@ -246,11 +246,6 @@ function store_data($d){ $ok = true; $d['policy'] = (int) $d['policy']; - // create changes.log - if (!@file_exists(DOKU_INC.'data/changes.log')){ - $ok = $ok && fileWrite(DOKU_INC.'data/changes.log',''); - } - // create local.php $now = date('r'); $output = <<<EOT @@ -265,6 +260,7 @@ EOT; $output .= '$conf[\'title\'] = \''.addslashes($d['title'])."';\n"; $output .= '$conf[\'lang\'] = \''.addslashes($LC)."';\n"; if($d['acl']){ + $output .= '$conf[\'allowdebug\'] = 0'.";\n"; $output .= '$conf[\'useacl\'] = 1'.";\n"; $output .= '$conf[\'superuser\'] = \''.$d['superuser']."';\n"; } |