### Eclipse Workspace Patch 1.0
#P Glowbox Core
Index: drupal/sites/all/modules/contrib/ife/ife.settings.inc
===================================================================
--- drupal/sites/all/modules/contrib/ife/ife.settings.inc	(revision 883)
+++ drupal/sites/all/modules/contrib/ife/ife.settings.inc	(working copy)
@@ -28,6 +28,12 @@
     '#description' => t('This option will print the form_id on the form for users with the administer inline form errors permissions'),
     '#default_value' => variable_get('ife_show_form_ids', 0)
   );
+  $form['general_settings']['ife_show_everywhere'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Show everywhere'),
+    '#description' => t('This option will show inline form errors on all forms. You can ignore all settings in the form conversion fieldset.'),
+    '#default_value' => variable_get('ife_show_everywhere', 0)
+  );
 
   $form['general_settings']['ife_display'] = array(
     '#type' => 'select',
@@ -47,7 +53,6 @@
     '#required' => TRUE
   );
 
-
   //the form id's
   $form['form_ids'] = array(
     '#type' => 'fieldset',
@@ -104,7 +109,7 @@
     '#type' => 'submit',
     '#value' => t('Save configuration'),
   );
-  
+
   if (module_exists('i18n') && $variables = variable_get('i18n_variables', 0)) {
     i18n_form_alter_settings($form, $variables);
   }
@@ -138,6 +143,7 @@
 
   //set general options
   variable_set('ife_show_form_ids', $values['ife_show_form_ids']);
+  variable_set('ife_show_everywhere', $values['ife_show_everywhere']);
   variable_set('ife_display', $values['ife_display']);
   variable_set('ife_general_message', $values['ife_general_message']);
 
@@ -184,7 +190,7 @@
   $form_id = $form_state['values']['fid'];
   db_query("DELETE FROM {ife} WHERE form_id = '%s'", $form_id);
   drupal_set_message(t('The form %form_id has been deleted.', array('%form_id' => $form_id)));
-  
+
   cache_clear_all('ife_form_ids', 'cache');
   drupal_goto('admin/settings/ife');
 }
\ No newline at end of file
Index: drupal/sites/all/modules/contrib/ife/ife.module
===================================================================
--- drupal/sites/all/modules/contrib/ife/ife.module	(revision 883)
+++ drupal/sites/all/modules/contrib/ife/ife.module	(working copy)
@@ -146,9 +146,14 @@
  * Implementation of hook_form_alter().
  */
 function ife_form_alter(&$form, $form_state, $form_id) {
-  $ife_options = ife_form_id_load($form_id);
 
-  if ($ife_options->status) {
+  $status = variable_get('ife_show_everywhere', 0);
+  if (!$status) {
+    $ife_options = ife_form_id_load($form_id);
+    $status = $ife_options->status;
+  }
+
+  if ($status) {
     $display = ife_form_id_display($ife_options);
     ife_filter_form($form, $display);
 
