-
-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CRM-20764 Allow clean URLs with CiviCRM on Backdrop #10674
Conversation
@@ -443,6 +443,9 @@ if (!defined('CIVICRM_CLEANURL')) { | |||
if ( function_exists('variable_get') && variable_get('clean_url', '0') != '0') { | |||
define('CIVICRM_CLEANURL', 1 ); | |||
} | |||
elseif { function_exists('config_get') && config_get('system.core', 'clean_url') != 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@herbdool there is also a php error here
PHP Parse error: syntax error, unexpected '{', expecting '(' in /home/jenkins/buildkit/build/core-10674-4ayju/sites/default/civicrm.settings.php on line 464
@seamuslee001 thanks, I've attempted your request and fixed the syntax error. |
@herbdool there's a false merge commits in the PR (see the 2nd commit). To avoid that, always rebase your current branch then rebase. Here are the steps to do that :
|
@monishdeb how about now? |
Perfect 😃👍 |
@monishdeb @herbdool Any reason why this hasn't been merged yet? |
@mlutfy I'm not sure why it hasn't been merged. I think it's ready. |
Code looks good to me |
OK, taking the liberty of merging this one, based on the comments/reviews. |
CRM-20764 Allow clean URLs with CiviCRM on Backdrop
Addresses https://issues.civicrm.org/jira/browse/CRM-20764