diff --git a/hide_submit.module b/hide_submit.module
index 3eafa94..d2dadde 100644
--- a/hide_submit.module
+++ b/hide_submit.module
@@ -302,20 +302,6 @@ function _hide_submit_get_image() {
     // Allow modules to modify the image.
     drupal_alter('hide_submit_image', $image);
    
-    // Theme should be able to play with those settings too.
-    // Theme may not be initialized at this time, so we have to force its
-    // initialization if $GLOBALS['theme'] is NULL.
-    // Because of this initialisation, the module weight is heavy, to let
-    // others modules (like theme_keys or section) do their job before.
-    if (empty($GLOBALS['theme'])) {
-      init_theme();  
-    }
-   
-    $function = $GLOBALS['theme'] . '_hide_submit_image_alter';
-    if (function_exists($function)) {
-      $function($image);
-    }
-    
     return $image;
 }
 
