Resolved issue 0000842: Variable $user is erased on rating page
Merge branch-1_7 2473:2474 into BSF git-svn-id: http://piwigo.org/svn/trunk@2475 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
ce1d7492f6
commit
9824cbbc5f
1 changed files with 4 additions and 4 deletions
|
@ -229,22 +229,22 @@ ORDER BY date DESC;';
|
|||
|
||||
if ( isset($users[$row['user_id']]) )
|
||||
{
|
||||
$user = $users[$row['user_id']];
|
||||
$user_rate = $users[$row['user_id']];
|
||||
}
|
||||
else
|
||||
{
|
||||
$user = '? '. $row['user_id'];
|
||||
$user_rate = '? '. $row['user_id'];
|
||||
}
|
||||
if ( strlen($row['anonymous_id'])>0 )
|
||||
{
|
||||
$user .= '('.$row['anonymous_id'].')';
|
||||
$user_rate .= '('.$row['anonymous_id'].')';
|
||||
}
|
||||
|
||||
$tpl_image['rates'][] =
|
||||
array(
|
||||
'DATE' => format_date($row['date']),
|
||||
'RATE' => $row['rate'],
|
||||
'USER' => $user,
|
||||
'USER' => $user_rate,
|
||||
'U_DELETE' => $url_del
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue