Skip to content

Commit

Permalink
Buildkit Installs failing for WordPress
Browse files Browse the repository at this point in the history
Front end paths missing trailing slash for CIVICRM_UF_BASEURL
  • Loading branch information
kcristiano authored Oct 10, 2017
1 parent 49d28d7 commit 8026dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Civi/Core/Paths.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function __construct() {
return \CRM_Core_Config::singleton()->userSystem->getDefaultFileStorage();
})
->register('wp.frontend.base', function () {
return array('url' => CIVICRM_UF_BASEURL);
return array('url' => CIVICRM_UF_BASEURL . '/');
})
->register('wp.frontend', function () use ($paths) {
$config = \CRM_Core_Config::singleton();
Expand Down

0 comments on commit 8026dc1

Please sign in to comment.