From 78b585135fc16c268a9de69a1156231873995a49 Mon Sep 17 00:00:00 2001 From: Jason Oster Date: Wed, 20 May 2009 17:10:09 +0000 Subject: Force makeTitle() to limit the amount of text put into a title --- functions/date_functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'functions/date_functions.php') diff --git a/functions/date_functions.php b/functions/date_functions.php index 3d55d7b..d722c17 100644 --- a/functions/date_functions.php +++ b/functions/date_functions.php @@ -163,7 +163,7 @@ function chooseOffset($time, $timezone = '') { function makeTitle($arr, $time) { global $timeFormat, $dateFormat_week; - $event_text = stripslashes(urldecode($arr["event_text"])); + $event_text = chopToWordCount(sanitizeForWeb(urldecode($arr["event_text"])), 25); if ($time == -1) { $start = localizeDate($dateFormat_week, $arr['start_unixtime']); $end = localizeDate($dateFormat_week, ($arr['end_unixtime'] - 60)); @@ -177,10 +177,10 @@ function makeTitle($arr, $time) { } if (!empty($arr['description'])) { - $title .= "\n\nDescription: ".urldecode($arr['description']); + $title .= "\n\nDescription: " . chopToWordCount(sanitizeForWeb(urldecode($arr['description'])), 100); } if (!empty($arr['location'])) { - $title .= "\n\nLocation: ".urldecode($arr['location']); + $title .= "\n\nLocation: " . chopToWordCount(sanitizeForWeb(urldecode($arr['location'])), 25); } $title = trim($title); -- cgit v1.2.3