Added extra html escaping to title.

git-svn-id: https://develop.svn.wordpress.org/trunk@180 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mike Little 2003-06-06 23:59:25 +00:00
parent 32549bc276
commit 6c4ba6a0e6
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ for($i = $calendarfirst; $i<($calendarlast+86400); $i = $i + 86400) {
$ak_day_titles = "";
foreach($ak_day_title_array as $post) {
if (substr($post->post_date, 8, 2) == date('d',$i)) {
$ak_day_titles = $ak_day_titles.stripslashes($post->post_title).$ak_title_separator;
$ak_day_titles = $ak_day_titles.htmlspecialchars(stripslashes($post->post_title)).$ak_title_separator;
}
}
$ak_day_titles = substr($ak_day_titles, 0, strlen($ak_day_titles) - $ak_trim);