Skip to content

Commit

Permalink
Disable update module at install time. (#1360)
Browse files Browse the repository at this point in the history
* Disable update module at install time.

* Simplified fix.
  • Loading branch information
danepowell authored and grasmash committed Apr 12, 2017
1 parent adac659 commit 2cb33c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions phing/tasks/drupal.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<option name="account-mail">"${drupal.account.mail}"</option>
<option name="locale">"${drupal.locale}"</option>
<param>"${project.profile.name}"</param>
<param>"install_configure_form.update_status_module='array(FALSE,FALSE)';install_configure_form.enable_update_status_module=FALSE;install_configure_form.enable_update_status_emails=FALSE"</param>
<param>"install_configure_form.update_status_module='array(FALSE,FALSE)'"</param>
<param>"install_configure_form.enable_update_status_module=NULL"</param>
</drush>
</then>
<else>
Expand All @@ -37,7 +38,8 @@
<option name="locale">"${drupal.locale}"</option>
<option name="config-dir">${cm.core.dirs.${cm.core.key}.path}</option>
<param>"${project.profile.name}"</param>
<param>"install_configure_form.update_status_module='array(FALSE,FALSE)';install_configure_form.enable_update_status_module=FALSE;install_configure_form.enable_update_status_emails=FALSE"</param>
<param>"install_configure_form.update_status_module='array(FALSE,FALSE)'"</param>
<param>"install_configure_form.enable_update_status_module=NULL"</param>
</drush>
</else>
</if>
Expand Down

0 comments on commit 2cb33c6

Please sign in to comment.