Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Minor
-
Resolution: Fixed/Completed
-
Affects Version/s: 2.1
-
Fix Version/s: 2.1
-
Component/s: Core CiviCRM
-
Labels:None
Description
In Drupal 6, the url() function takes an array as the second argument. Line 103 of civicrm.module uses
url('civicrm/admin/options', 'group=activity_type&reset=1')
which should be:
url('civicrm/admin/options', array('group=activity_type&reset=1'))
This throws errors on Drupal's /admin/by-module page.