11

Hello
There is one bug in fresh install of 255B
file /install/page_configsave.php
Quote:
should be
Quote:
QED
There is one bug in fresh install of 255B
file /install/page_configsave.php
Quote:
line 86 if (!@copy($rewrite['VAR_PATH'] . '/data/secure.dist.php', $rewrite['VAR_PATH'] . '/data/secure.php')) {
$error = ERR_COPY_MAINFILE.$rewrite['VAR_PATH'] . '/data/secure.dist.php';
} else {
clearstatcache();
$rewrite = array_merge($rewrite, $vars);
should be
Quote:
line 86 if (!@copy($vars['VAR_PATH'] . '/data/secure.dist.php', $vars['VAR_PATH'] . '/data/secure.php')) {
$error = ERR_COPY_MAINFILE.$vars['VAR_PATH'] . '/data/secure.dist.php';
} else {
clearstatcache();
$rewrite = array_merge($rewrite, $vars);
QED