mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
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:
parent
b406cb7239
commit
a128e51fc4
1 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Reference in a new issue