This is another one of those alerts that confuses people, since they weren't explicitly configuring registration settings on the previous page.

The message occurs on the 'Create the first group' page of the installer.

Comments

jpontani’s picture

The message is from the Registration module, and is from the Demo Content creating an Event node with a registration field and default settings.

Attached is a patch that will remove this specific message but keep all other 'status' type messages.

jpontani’s picture

Status: Active » Needs review
ezra-g’s picture

Status: Needs review » Needs work
+++ b/commons.profileundefined
@@ -373,6 +373,13 @@ function commons_demo_content() {
+    // Remove the registration settings message.
+    if ($message != t('Registration settings have been saved.')) {
+      drupal_set_message('status', $message);
+    }
+  }
 
   // Delete the demo content variable
   variable_del('commons_install_demo_content');

Wouldn't we want this check to be == rather than !=? Or, we could call commons_clear_messages().

jpontani’s picture

In this instance we want not equals, as in, if the message is not "registration settings have been saved." we want to re-display the status message. However, I think #1857458: During installation "configuration options have been saved" dsm() causes some confusion should have provided a solution, and yes we should just call commons_clear_messages() instead.

jpontani’s picture

Status: Needs work » Needs review
StatusFileSize
new546 bytes

Attached a patch that simply calls commons_clear_messages() after creating the event node in commons_demo_content().

ezra-g’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

lisarex’s picture

Issue tags: +user experience

Tagging with 'user experience' to track what was uncovered in a usability study

ezra-g’s picture

Version: » 7.x-3.x-dev

Restoring 7.x-3.x version property.