Resolved issue 0000842: Variable $user is erased on rating page

git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2474 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub
2008-08-15 19:50:22 +00:00
parent a2e98299d7
commit f645fc1419
+4 -4
View File
@@ -259,22 +259,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'].')';
}
$template->assign_block_vars('image.rate',
array(
'DATE' => format_date($row['date']),
'RATE' => $row['rate'],
'USER' => $user,
'USER' => $user_rate,
'U_DELETE' => $url_del
)
);