diff options
-rw-r--r-- | phpBB/develop/create_schema_files.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index f364030231..d4309d153e 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -12,7 +12,7 @@ * If you overwrite the original schema files please make sure you save the file with UNIX linefeeds. */ -//die("Please read the first lines of this script for instructions on how to enable it"); +die("Please read the first lines of this script for instructions on how to enable it"); @set_time_limit(0); @@ -239,7 +239,7 @@ $supported_dbms = array('firebird', 'mssql', 'mysql', 'db2', 'oracle', 'postgres foreach ($supported_dbms as $dbms) { - $fp = fopen($schema_path . '' . $dbms . '_schema.sql', 'wt'); + $fp = fopen($schema_path . '_' . $dbms . '_schema.sql', 'wt'); $line = ''; |