Remove unneeded calls to unset()

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@5479 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames 2006-01-20 19:51:08 +00:00
parent b406cb7239
commit a128e51fc4

View file

@ -499,9 +499,9 @@ function get_table_content_postgresql($table, $handler)
while($row = $db->sql_fetchrow($result)) while($row = $db->sql_fetchrow($result))
{ {
unset($schema_vals); $schema_vals = '';
unset($schema_fields); $schema_fields = '';
unset($schema_insert); $schema_insert = '';
// //
// Build the SQL statement to recreate the data. // Build the SQL statement to recreate the data.
// //