mirror of
https://github.com/Ekokumppanit/Lentolaskuri.git
synced 2026-02-15 17:47:33 +00:00
Fixed double-slash commenting to block comment, like it should be.
This commit is contained in:
@@ -18,8 +18,10 @@ if (is_readable('config.php')) {
|
|||||||
die("Couldn't find configuration file. Please check the installation guide.");
|
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']) {
|
if (is_readable('lentolaskuri.sql') && $config['create_table']) {
|
||||||
$create_table = file_get_contents('lentolaskuri.sql');
|
$create_table = file_get_contents('lentolaskuri.sql');
|
||||||
if (! empty($create_table)) {
|
if (! empty($create_table)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user