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:
parent
32549bc276
commit
6c4ba6a0e6
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user