From 4cf27e41deba229c3ab59b03514feb21aefc4ce9 Mon Sep 17 00:00:00 2001 From: the_systech Date: Fri, 15 Feb 2002 21:38:57 +0000 Subject: [PATCH] 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 --- phpBB/admin/admin_db_utilities.php | 4 ++-- 1 file 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"; } }