]> git.mxchange.org Git - friendica.git/commitdiff
[CLEANUP] Code: Remove function
authorMarcus Müller <marcusmueller@protonmail.com>
Mon, 16 Apr 2018 12:56:02 +0000 (14:56 +0200)
committerGitHub <noreply@github.com>
Mon, 16 Apr 2018 12:56:02 +0000 (14:56 +0200)
auto_install.php

index ef30d1912a6592c003595944002b105f6d8b4bfe..bc418d68896ef0ac95212dd4d4b70a030c3a24c9 100644 (file)
@@ -13,7 +13,9 @@ if (file_exists('.htconfig.php') && filesize('.htconfig.php')) {
 }
 
 // Remove die from config file
-copy_config_file();
+$fileContent = file_get_contents('./htconfig.php');
+$fileContent = str_replace('die', '//die', $fileContent);
+file_put_contents('.htautoinstall.php', $fileContent);
 
 require_once 'boot.php';
 require_once 'mod/install.php';
@@ -109,13 +111,6 @@ echo " Complete!\n\n";
 
 echo "\nInstallation is finished\n";
 
-function copy_config_file()
-{
-       $fileContent = file_get_contents('./htconfig.php');
-       $fileContent = str_replace('die', '//die', $fileContent);
-       file_put_contents('.htautoinstall.php', $fileContent);
-}
-
 /**
  * @param App $app
  * @return array