diff options
author | the_systech <the_systech@users.sourceforge.net> | 2002-02-15 21:38:57 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2002-02-15 21:38:57 +0000 |
commit | 4cf27e41deba229c3ab59b03514feb21aefc4ce9 (patch) | |
tree | 942a3e3150ad4d6d1995afd218caa1216a3fc2d7 | |
parent | 17e976e5d9bdc43e8567214a34c823489981c18f (diff) | |
download | forums-4cf27e41deba229c3ab59b03514feb21aefc4ce9.tar forums-4cf27e41deba229c3ab59b03514feb21aefc4ce9.tar.gz forums-4cf27e41deba229c3ab59b03514feb21aefc4ce9.tar.bz2 forums-4cf27e41deba229c3ab59b03514feb21aefc4ce9.tar.xz forums-4cf27e41deba229c3ab59b03514feb21aefc4ce9.zip |
Fix for #518056 in bug tracker... Me and my D@mned typos.... Amazing what a difference one little letter, and one extra space can make... :(
git-svn-id: file:///svn/phpbb/trunk@2162 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/admin/admin_db_utilities.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_db_utilities.php b/phpBB/admin/admin_db_utilities.php index 179109e89e..595d4fe6d7 100644 --- a/phpBB/admin/admin_db_utilities.php +++ b/phpBB/admin/admin_db_utilities.php @@ -225,7 +225,7 @@ function get_table_def_postgresql($table, $crlf) $schema_create .= ' NOT NULL'; } - $schema_create .= ", $crlf"; + $schema_create .= ",$crlf"; } // @@ -278,7 +278,7 @@ function get_table_def_postgresql($table, $crlf) { while(list($idx_name, $props) = each($index_rows)) { - $props['column_names'] = ereg_replace(", $", "" , $props['column_name']); + $props['column_names'] = ereg_replace(", $", "" , $props['column_names']); $index_create .= 'CREATE ' . $props['unique'] . " INDEX $idx_name ON $table (" . $props['column_names'] . ");$crlf"; } } |