mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-03 14:17:56 +02:00
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
This commit is contained in:
parent
17e976e5d9
commit
4cf27e41de
@ -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";
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user