From 0afd28793eceb1d451b472b1790f9de16c8a7c82 Mon Sep 17 00:00:00 2001 From: zontarian Date: Mon, 23 Jan 2017 15:51:15 +0100 Subject: [PATCH] Update bootstrap.php typo in reading file name --- bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.php b/bootstrap.php index 5986446..9fb70d9 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -27,7 +27,7 @@ if(!file_exists($SETTINGS_FILE)){ //create sample file - $myfile = fopen($SETTINGS_FILE.'k', "w") or die("Unable to open file!"); + $myfile = fopen($SETTINGS_FILE, "w") or die("Unable to open file!"); fwrite($myfile, HUGO_CONFIG_INTRO); fwrite($myfile, HUGO_CONFIG_SAMPLE); fclose($myfile);