### Eclipse Workspace Patch 1.0
#P gaia.kody
Index: app/sites/all/modules/contrib/captcha/translations/pl.po
===================================================================
--- app/sites/all/modules/contrib/captcha/translations/pl.po	(revision 9065)
+++ app/sites/all/modules/contrib/captcha/translations/pl.po	(working copy)
@@ -508,3 +508,7 @@
 #: image_captcha/image_captcha.info:0
 msgid "Provides an image based CAPTCHA."
 msgstr ""
+
+#: image_captcha/image_captcha.info:0
+msgid "Reload"
+msgstr "Zmień kod"
Index: app/sites/all/modules/contrib/captcha/image_captcha/image_captcha.module
===================================================================
--- app/sites/all/modules/contrib/captcha/image_captcha/image_captcha.module	(revision 9066)
+++ app/sites/all/modules/contrib/captcha/image_captcha/image_captcha.module	(working copy)
@@ -225,7 +225,7 @@
         $img_src = check_url(url("image_captcha/$captcha_sid/". time()));
         $result['form']['captcha_image'] = array(
           '#type' => 'markup',
-          '#value' => '<img src="'. $img_src .'" class="captcha_image" id="captcha_image_'. $captcha_sid .'" alt="'. t('Image CAPTCHA') .'" title="'. t('Image CAPTCHA') .'" />',
+          '#value' => '<img src="'. $img_src .'" class="captcha_image" id="captcha_image_'. $captcha_sid .'" alt="'. t('Image CAPTCHA') .'" title="'. t('Image CAPTCHA') .'" /><br /><a href="#" id="reload-captcha">' . t('Reload') . '</a>',
           '#weight' => -2,
         );
         $result['form']['captcha_response'] = array(
Index: app/sites/all/modules/contrib/captcha/image_captcha/image_captcha.js
===================================================================
--- app/sites/all/modules/contrib/captcha/image_captcha/image_captcha.js	(revision 9066)
+++ app/sites/all/modules/contrib/captcha/image_captcha/image_captcha.js	(working copy)
@@ -34,9 +34,11 @@
 	// Show or hide appropriately on page load.
 	smooth_distortion_shower(0)
 	
-	// Add a click event to CAPTCHA images to reload the CAPTCHA image
-	$(".captcha_image").click(function() {
-		$(this).attr('src', $(this).attr('src').replace(/\?.*$/, '') + '?r=' + Math.random());
-	})
+	
+    // Add a click event to CAPTCHA images to reload the CAPTCHA image
+    $("#reload-captcha").click(function() {
+      $(".captcha_image").attr('src', $(".captcha_image").attr('src').replace(/\?.*$/, '') + '?r=' + Math.random());
+      return false;
+    })
 
 };
