Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Critical
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.0.0
-
Fix Version/s: 4.0.0
-
Component/s: Core CiviCRM
-
Labels:None
Description
Several Drupal paths that CiviCRM links to have changed including:
admin/user/permissions -> admin/people/permissions
admin/settings/* -> admin/config/*
Most instances have been changed, but I see in the installer there's a link to
$drupalPermissionsURL = "{$drupalURL}index.php?q=admin/user/permissions";
which should probably be replaced with
$drupalPermissionsURL = url('admin/people/permissions');
A global search for 'admin/user' or 'admin/settings' found no other instances.