Skip to content

Commit 123bab8

Browse files
committed
Blue Spring
1 parent 9cda900 commit 123bab8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ if (php_sapi_name() !== 'cli') exit('It\'s no cli!');
33

44
$config = dirname(dirname(dirname(__DIR__))).'/Config/Html.php';
55

6-
if(is_file($config)) return "\n--- HTML Engine configuration file already exists!\n";
7-
if(!is_dir(dirname($config))) return "\n\n--- Configuration file for HTML Engine not instaled!\n\n";
6+
if(is_file($config)) return "\n--- HTML Engine configuration file already exists!";
7+
if(!is_dir(dirname($config))) return "\n--- Configuration file for HTML Engine not instaled!";
88

99
$data = <<<'EOD'
1010
<?php
@@ -94,4 +94,4 @@ EOD;
9494

9595
file_put_contents($config, $data);
9696

97-
return "\n\n--- HTML Engine instaled!\n\n";
97+
return "\n--- HTML Engine instaled!";

0 commit comments

Comments
 (0)