From c9d8a92f3deced626685ee42e6ce3f9065bb326c Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Fri, 22 Nov 2013 09:24:32 +0200 Subject: [PATCH] Fixed double-slash commenting to block comment, like it should be. --- app/api/import.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/api/import.php b/app/api/import.php index 727f72c..c53eb70 100644 --- a/app/api/import.php +++ b/app/api/import.php @@ -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)) {