- Patch #428242 by David_Rothstein: small code clean-up in check_markup().

merge-requests/26/head
Dries Buytaert 2009-04-13 12:07:00 +00:00
parent dd3e3989cd
commit 079cac337e
1 changed files with 1 additions and 4 deletions

View File

@ -435,9 +435,6 @@ function check_markup($text, $format = FILTER_FORMAT_DEFAULT, $langcode = '', $c
return $cached->data; return $cached->data;
} }
// See if caching is allowed for this format.
$cache = filter_format_allowcache($format);
// Convert all Windows and Mac newlines to a single newline, // Convert all Windows and Mac newlines to a single newline,
// so filters only need to deal with one possibility. // so filters only need to deal with one possibility.
$text = str_replace(array("\r\n", "\r"), "\n", $text); $text = str_replace(array("\r\n", "\r"), "\n", $text);
@ -456,7 +453,7 @@ function check_markup($text, $format = FILTER_FORMAT_DEFAULT, $langcode = '', $c
} }
// Store in cache with a minimum expiration time of 1 day. // Store in cache with a minimum expiration time of 1 day.
if ($cache) { if (filter_format_allowcache($format)) {
cache_set($cache_id, $text, 'cache_filter', REQUEST_TIME + (60 * 60 * 24)); cache_set($cache_id, $text, 'cache_filter', REQUEST_TIME + (60 * 60 * 24));
} }
} }