Index: twitter_pull.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/twitter_pull/twitter_pull.module,v
retrieving revision 1.1.2.3
diff -u -p -r1.1.2.3 twitter_pull.module
--- twitter_pull.module	3 Apr 2010 05:19:15 -0000	1.1.2.3
+++ twitter_pull.module	30 Nov 2010 07:45:16 -0000
@@ -124,12 +124,13 @@ function twitter_pull_retrieve($twitkey,
  * Automatically add links to URLs and Twitter usernames in a tweet.
  */
 function twitter_pull_add_links($text) {
+  $target = variable_get('twitter_pull_link_target', '');
   $pattern = '#http://(\S+)#ims';
-  $repl = '<a href="http://$1">$1</a>';
+  $repl = '<a href="http://$1"'. $target .'>$1</a>';
   $text = preg_replace($pattern, $repl, $text);
 
   $pattern = '#@(\w+)#ims';
-  $repl = '@<a href="http://twitter.com/$1">$1</a>';
+  $repl = '@<a href="http://twitter.com/$1"'. $target .'>$1</a>';
   $text = preg_replace($pattern, $repl, $text);
 
   return $text;
