Fixed double-slash commenting to block comment, like it should be.

This commit is contained in:
Ismo Vuorinen
2013-11-22 09:24:32 +02:00
parent 98350a9059
commit c9d8a92f3d

View File

@@ -18,8 +18,10 @@ if (is_readable('config.php')) {
die("Couldn't find configuration file. Please check the installation guide.");
}
// If we can see lentolaskuri.sql and config.php setting
// $config['create_table'] is true, we try to create table for airports.
/**
* If we can see lentolaskuri.sql and config.php setting
* $config['create_table'] is true, we try to create table for airports.
*/
if (is_readable('lentolaskuri.sql') && $config['create_table']) {
$create_table = file_get_contents('lentolaskuri.sql');
if (! empty($create_table)) {