diff options
author | Igor Wiedler <igor@wiedler.ch> | 2011-10-16 19:30:33 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2011-10-16 19:30:33 +0200 |
commit | 8d33dea2cdc68473fbcf3c45ac8bdbe8fd185054 (patch) | |
tree | 0a6496d21e4b0906b1848af6d40ca6d5c24a4af5 /phpBB/develop | |
parent | 7fa14e654ad8880613897b45f5effb287d3bfd2d (diff) | |
download | forums-8d33dea2cdc68473fbcf3c45ac8bdbe8fd185054.tar forums-8d33dea2cdc68473fbcf3c45ac8bdbe8fd185054.tar.gz forums-8d33dea2cdc68473fbcf3c45ac8bdbe8fd185054.tar.bz2 forums-8d33dea2cdc68473fbcf3c45ac8bdbe8fd185054.tar.xz forums-8d33dea2cdc68473fbcf3c45ac8bdbe8fd185054.zip |
[ticket/10413] Fix CS
PHPBB3-10413
Diffstat (limited to 'phpBB/develop')
-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 9649997412..1ba03707d0 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. */ -$schema_path = dirname(__FILE__).'/../install/schemas/'; +$schema_path = dirname(__FILE__) . '/../install/schemas/'; if (!is_writable($schema_path)) { @@ -238,7 +238,7 @@ $supported_dbms = array('firebird', 'mssql', 'mysql_40', 'mysql_41', 'oracle', ' foreach ($supported_dbms as $dbms) { - $fp = fopen($schema_path . '' . $dbms . '_schema.sql', 'wt'); + $fp = fopen($schema_path . $dbms . '_schema.sql', 'wt'); $line = ''; |