? .svn
? activitystream_twitpic.patch
Index: activitystream_twitter.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/activitystream/activitystream_twitter/activitystream_twitter.module,v
retrieving revision 1.2.2.2.2.1
diff -u -p -r1.2.2.2.2.1 activitystream_twitter.module
--- activitystream_twitter.module 16 Aug 2008 08:51:43 -0000 1.2.2.2.2.1
+++ activitystream_twitter.module 24 Feb 2009 00:40:02 -0000
@@ -79,6 +79,9 @@ function activitystream_twitter_makelink
$text = preg_replace('/@(\w*)/', '@\\1', $text);
// hashtags to hashtag.org
$text = preg_replace('/#(\w*)/', '#\\1', $text);
+ // twitpic images
+ $text = preg_replace("/http:\/\/twitpic\.com\/(.*)<\/a>/",
+ "
", $text);
return $text;
}