mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Fix 'each' warning, bug #528254
git-svn-id: file:///svn/phpbb/trunk@2332 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
14b6e1447d
commit
c3801d4d3a
1 changed files with 9 additions and 16 deletions
|
@ -504,7 +504,13 @@ switch( $mode )
|
|||
message_die(GENERAL_ERROR, "Could not get data from themes table", "", __LINE__, __FILE__, $sql);
|
||||
}
|
||||
|
||||
$selected_values = $db->sql_fetchrow($result);
|
||||
if ( $selected_values = $db->sql_fetchrow($result) )
|
||||
{
|
||||
while(list($key, $val) = @each($selected_values))
|
||||
{
|
||||
$selected[$key] = $val;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Fetch the Themes Name data
|
||||
|
@ -517,22 +523,9 @@ switch( $mode )
|
|||
message_die(GENERAL_ERROR, "Could not get data from themes name table", "", __LINE__, __FILE__, $sql);
|
||||
}
|
||||
|
||||
$selected_names = $db->sql_fetchrow($result);
|
||||
|
||||
reset($selected_values);
|
||||
//$selected = array_merge($selected_values, $selected_names);
|
||||
if(count($selected_values))
|
||||
if ( $selected_names = $db->sql_fetchrow($result) )
|
||||
{
|
||||
while(list($key, $val) = each($selected_values))
|
||||
{
|
||||
$selected[$key] = $val;
|
||||
}
|
||||
}
|
||||
|
||||
reset($selected_names);
|
||||
if($selected_names)
|
||||
{
|
||||
while(list($key, $val) = each($selected_names))
|
||||
while(list($key, $val) = @each($selected_names))
|
||||
{
|
||||
$selected[$key] = $val;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue