1
1
Fork 0

more plugin hooks

This commit is contained in:
Friendika 2010-12-25 15:01:02 -08:00
commit f6556e0a72
3 changed files with 22 additions and 2 deletions

View file

@ -499,7 +499,9 @@ function get_atom_elements($feed,$item) {
$res['target'] .= '</target>' . "\n";
}
// call_hooks('parse_atom', array('feed' => $feed, 'item' => $item, 'result' => $res));
$arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
call_hooks('parse_atom', $arr);
return $res;
}