diff --git a/sites/all/modules/contrib/tweetbutton/tweetbutton.module b/sites/all/modules/contrib/tweetbutton/tweetbutton.module
index 87081d7..4a17d34 100644
--- a/sites/all/modules/contrib/tweetbutton/tweetbutton.module
+++ b/sites/all/modules/contrib/tweetbutton/tweetbutton.module
@@ -102,7 +102,7 @@ function tweetbutton_field_widget_form(&$form, &$form_state, $field, $instance,
     '#default_value' => !empty($items[$delta]['account'])? $items[$delta]['account']: $default_author,
     '#title' => t('Author twitter account'),
     '#description' => t('Leave blank to use global twitter account.'),
-    '#maxlength' => 128,
+    '#maxlength' => 32,
     '#access' => user_access('use tweetbutton field'),
   );
   
@@ -111,7 +111,7 @@ function tweetbutton_field_widget_form(&$form, &$form_state, $field, $instance,
     '#default_value' => !empty($items[$delta]['text'])? $items[$delta]['text']: $default_text,
     '#title' => t('Tweet text'),
     '#description' => t('Leave blank to use content title as tweet text'),
-    '#maxlength' => 32,
+    '#maxlength' => 128,
     '#access' => user_access('use tweetbutton field'),
   );
   
@@ -475,4 +475,4 @@ function theme_tweetbutton_hashtag_display($variables) {
   
   $hash_link = l($hash_text, 'http://twitter.com/intent/tweet', array('query' => $query, 'attributes' => $attributes, 'external' => TRUE, 'https' => TRUE));
   return '<div class="tweetbutton-hashtag tweetbutton">' . $hash_link . '</div>';
-}
\ No newline at end of file
+}
