Call to purl_goto in space_type_purl->deactivate() sometimes causes this error:

PHP Fatal error: Unsupported operand types in /webroots/www/site-d7/includes/common.inc on line 2284

This is because url() wants the query string to be an array, but in the deactivate function it's already been turned to a string.

Fix, change line 67 from

'query' => drupal_http_build_query(drupal_get_query_parameters($_GET, array('q'))),

to

'query' => drupal_get_query_parameters($_GET, array('q')),

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

andykisaragi’s picture

patch for above