Bug #23082 » index.php.patch
/opt/local/apache2/htdocs/Development/TYPO3v4/trunk/typo3/install/index.php (working copy) | ||
---|---|---|
$enableInstallToolFile = $PATH_site . '/typo3conf/ENABLE_INSTALL_TOOL';
|
||
// If typo3conf/QUICKSTART is present and can be deleted, automatically create typo3conf/ENABLE_INSTALL_TOOL
|
||
if (is_file($quickstartFile) && unlink($quickstartFile)) {
|
||
if (is_file($quickstartFile) && is_writeable($quickstartFile) && unlink($quickstartFile)) {
|
||
touch($enableInstallToolFile);
|
||
}
|
||