1
0
This commit is contained in:
Garvin Hicking
2008-03-20 09:15:07 +00:00
parent 96ee4ced98
commit 652ac0bb80
4 changed files with 25 additions and 15 deletions

View File

@ -916,15 +916,15 @@ function serendipity_displayTopUrlList($list, $limit, $use_links = true, $interv
if ($use_links) {
printf(
'<a href="%1$s://%2$s" title="%2$s" >%2$s</a> (%3$s)<br />',
$row['scheme'],
$row['host'],
$row['total']
htmlspecialchars($row['scheme']),
htmlspecialchars($row['host']),
htmlspecialchars($row['total'])
);
} else {
printf(
'%1$s (%2$s)<br />',
$row['host'],
$row['total']
htmlspecialchars($row['host']),
htmlspecialchars($row['total'])
);
}
}