diff options
author | David M <davidmj@users.sourceforge.net> | 2008-01-06 13:48:28 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2008-01-06 13:48:28 +0000 |
commit | 6dfa77098619c461649dcef22aac142227d3653b (patch) | |
tree | 42d0ed4d529bfe2ec71807c9dbec473f954f47c5 /phpBB | |
parent | 2f08a3606203c1a2c7aad96e2eb65f6fa882d9a8 (diff) | |
download | forums-6dfa77098619c461649dcef22aac142227d3653b.tar forums-6dfa77098619c461649dcef22aac142227d3653b.tar.gz forums-6dfa77098619c461649dcef22aac142227d3653b.tar.bz2 forums-6dfa77098619c461649dcef22aac142227d3653b.tar.xz forums-6dfa77098619c461649dcef22aac142227d3653b.zip |
I plan on getting a perfect commit one of these days... Today is not that day :P
git-svn-id: file:///svn/phpbb/trunk@8309 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-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 = ''; |