Skip to content
Snippets Groups Projects
Verified Commit 23cc3cff authored by Kevin Cristiano's avatar Kevin Cristiano :earth_americas:
Browse files

CRM-21812 - don't specify installation type post install


props @MegaphoneJon
The wp-cli-login-server plugin checks for the presence of elements in the $_GET array, and fails if any are found. This conflicts with CiviCRM, which places:

$_GET['civicrm_install_type'] = 'wordpress';

into every page load.

I confirmed that this value is only used for install, and placed a conditional around it to only insert pre-install. I successfully installed CiviCRM and engaged in normal use with the conditional applied, and confirmed that this fixed the WP plugin.

This is intended to close aaemnnosttv/wp-cli-login-command#24.

Signed-off-by: default avatarKevin Cristiano <kcristiano@tadpole.cc>
parent 7b881b59
No related branches found
No related tags found
No related merge requests found
......@@ -309,7 +309,9 @@ class CiviCRM_For_WordPress {
if ( $this->civicrm_in_wordpress() ) {
// this is required for AJAX calls in WordPress admin
$_GET['noheader'] = TRUE;
} else {
}
if ( !CIVICRM_INSTALLED && !$this->civicrm_in_wordpress() ) {
$_GET['civicrm_install_type'] = 'wordpress';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment