Skip to content

Commit

Permalink
More filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
markphilpot committed Aug 31, 2009
1 parent f48ae2e commit 3c75544
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _activity_feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ function process_item($item)
{
if($item->get_feed_domain() == 'friendfeed.com' &&
(preg_match("/twitter/", $item->get_original_permalink()) ||
preg_match("/facebook/", $item->get_original_permalink()) )
preg_match("/facebook/", $item->get_original_permalink()) ||
preg_match("/from Facebook/", $item->get_content()) ||
preg_match("/from delicious/", $item->get_content()) )
)
return false;
else
Expand Down

0 comments on commit 3c75544

Please sign in to comment.