diff --git a/docroot/sites/all/modules/contrib/twitfaves/twitfaves.module b/docroot/sites/all/modules/contrib/twitfaves/twitfaves.module
index aba8c6d..0d359fc 100755
--- a/docroot/sites/all/modules/contrib/twitfaves/twitfaves.module
+++ b/docroot/sites/all/modules/contrib/twitfaves/twitfaves.module
@@ -52,18 +52,6 @@ function twitfaves_block_configure($delta) {
     '#default_value' => variable_get('twitfaves_filter', TRUE),
   );
 
-  $form['twitfaves_profile_size'] = array(
-    '#type' => 'radios',
-    '#title' => t('Profile image variant.'),
-    '#options' => array(
-      'normal' => t('Normal. 48px by 48px.'),
-      'bigger' => t('Bigger. 73px by 73px.'),
-      'mini' => t('Mini. 24px by 24px.'),
-      'original' => t('Original size.'),
-    ),
-    '#default_value' => variable_get('twitfaves_profile_size', 'normal'),
-  );
-
   return $form;
 }
 
@@ -76,7 +64,6 @@ function twitfaves_block_save($delta, $edit) {
   variable_set('twitfaves_interval', $edit['twitfaves_interval']);
   variable_set('twitfaves_link_urls', $edit['twitfaves_link_urls']);
   variable_set('twitfaves_filter', $edit['twitfaves_filter']);
-  variable_set('twitfaves_profile_size', $edit['twitfaves_profile_size']);
   cache_clear_all('twitfaves', 'cache');
 }
 
@@ -166,17 +153,6 @@ function _twitfaves_extract($tweet, $filter) {
     $formattedTweet->text = _twitter_filter_text($formattedTweet->text, '@', 'http://twitter.com/');
     $formattedTweet->text = _twitter_filter_text($formattedTweet->text, '#', 'http://twitter.com/search/?q=%23');
   }
-  $profile_size = variable_get('twitfaves_profile_size', 'normal');
-  if ($profile_size != 'normal') {
-    // Modify the url to get the appropriate size.
-    // @see https://dev.twitter.com/docs/user-profile-images-and-banners
-    $info = pathinfo($formattedTweet->image_url);
-    $info['filename'] = preg_replace('/_normal$/', '', $info['filename']);
-    if ($profile_size != 'original') {
-      $info['filename'] .= '_' . $profile_size;
-    }
-    $formattedTweet->image_url = $info['dirname'] . '/' . $info['filename'] . '.' . $info['extension'];
-  }
 
   // Make crawlers not to follow links and open then in new windows.
   $formattedTweet->text = _twitter_filter_link($formattedTweet->text, $filter);
