fix numeric_score to use make_link for user profile links

This commit is contained in:
kenshiros 2013-04-07 07:30:38 -04:00
parent 2e5a51bc8d
commit 455bf795de

View File

@ -58,7 +58,7 @@ class NumericScore extends Extension {
$html = "<table>";
foreach($x as $vote) {
$html .= "<tr><td>";
$html .= "<a href='/user/{$vote['username']}'>{$vote['username']}</a>";
$html .= "<a href='".make_link("user/{$vote['username']}")."'>{$vote['username']}</a>";
$html .= "</td><td>";
$html .= $vote['score'];
$html .= "</td></tr>";