Index: mollom.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/mollom/mollom.admin.inc,v
retrieving revision 1.26
diff -u -p -r1.26 mollom.admin.inc
--- mollom.admin.inc	3 Jun 2010 18:41:15 -0000	1.26
+++ mollom.admin.inc	8 Jul 2010 14:21:47 -0000
@@ -525,15 +525,15 @@ function mollom_admin_settings($form, &$
     '#description' => t('Displays a link to the recommended <a href="@privacy-policy-url">privacy policy on mollom.com</a> on all forms that are protected via <a href="@help-url">textual analysis</a>. When disabling this option, you are required to inform visitors about data privacy through other means, as stated in the <a href="@terms-of-service-url">terms of service</a> applying to your subscription.', array(
       '@privacy-policy-url' => 'http://mollom.com/web-service-privacy-policy',
       '@help-url' => url('admin/help/mollom'),
-      '@terms-of-service-url' => 'http://mollom.com/terms-of-service')),
+      '@terms-of-service-url' => 'http://mollom.com/terms-of-service',
+    )),
   );
 
   $form['mollom_developer_mode'] = array(
     '#type' => 'checkbox',
-    '#title' => t("Activate developer mode"),
-    '#return_value' => 1,
+    '#title' => t('Enable developer mode'),
     '#default_value' => variable_get('mollom_developer_mode', 0),
-    '#description' => t("Allows Mollom to be tested. When developer mode is activated, you can type 'ham', 'unsure' or 'spam' in the post body of a Mollom protected form to trigger the corresponding Mollom behavior. When enabling this option, Mollom stops working correctly so it should never be used in production environments."),
+    '#description' => t("Allows to test Mollom. When enabled, submitting 'ham', 'unsure', or 'spam' as post body on a protected form will trigger the corresponding behavior. All Mollom CAPTCHAs will ignore the requested characters and only distinguish between 'correct' and 'incorrect'. Make sure to disable this option in production environments."),
   );
 
   return system_settings_form($form);
Index: mollom.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/mollom/mollom.module,v
retrieving revision 1.47
diff -u -p -r1.47 mollom.module
--- mollom.module	30 Jun 2010 18:47:43 -0000	1.47
+++ mollom.module	8 Jul 2010 14:09:14 -0000
@@ -1364,14 +1364,14 @@ function mollom($method, $data = array()
   // Initialize refresh variable.
   $refresh = FALSE;
 
-  // Retrieve the list of Mollom servers from the database.
-  $servers = variable_get('mollom_servers', array());
-
   // Enable testing mode.
-  if (variable_get('mollom_developer_mode', 0) == 1) {
+  if (variable_get('mollom_developer_mode', 0)) {
     $data['testing'] = TRUE;
   }
 
+  // Retrieve the list of Mollom servers from the database.
+  $servers = variable_get('mollom_servers', array());
+
   if (empty($servers)) {
     // Retrieve a new list of servers.
     $servers = _mollom_retrieve_server_list();
