Skip to content

Commit

Permalink
Update bootstrap.php
Browse files Browse the repository at this point in the history
typo in reading file name
  • Loading branch information
waltergamba authored Jan 23, 2017
1 parent 68fd27a commit 0afd287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0afd287

Please sign in to comment.