Skip to content
Snippets Groups Projects
Commit 99b14a92 authored by Chris Leppanen's avatar Chris Leppanen
Browse files

Remove unused code from common_syndication_parser.inc.

parent 7a901696
No related branches found
No related tags found
No related merge requests found
...@@ -38,18 +38,6 @@ function common_syndication_parser_parse($string) { ...@@ -38,18 +38,6 @@ function common_syndication_parser_parse($string) {
return FALSE; return FALSE;
} }
/**
* Get the cached version of the <var>$url</var>
*/
function _parser_common_syndication_cache_get($url) {
$cache_file = _parser_common_syndication_sanitize_cache() . '/' . md5($url);
if (file_exists($cache_file)) {
$file_content = file_get_contents($cache_file);
return unserialize($file_content);
}
return FALSE;
}
/** /**
* Determine the feed format of a SimpleXML parsed object structure. * Determine the feed format of a SimpleXML parsed object structure.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment