- π·π΄Romania claudiu.cristea Arad π·π΄
This version of Drupal is not supported anymore. If this is still an issue in the
8.x-1.x
branch, please open a new up-to-date ticket. Closing.
The following error happens when accessing an OG node page, or clearing drupal cache with drush.
warning: Parameter 2 to og_notifications_notifications() expected to be a reference, value given in messaging/messaging.module on line 1242
Requirements:
1. Php 5.3
2. Clean install Drupal 6.
3. Installed modules:
Messaging 6.x-4.x-dev
Organic groups 6.x-2.x-dev
Find in og_notifications.module the function og_notifications_notifications and remove the ampersand by the first argument:
function og_notifications_notifications($op, &$arg0, $arg1 = NULL, $arg2 = NULL)
=>
function og_notifications_notifications($op, $arg0, $arg1 = NULL, $arg2 = NULL)
None.
Follow function signature as defined in Messaging API module.
None
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This version of Drupal is not supported anymore. If this is still an issue in the 8.x-1.x
branch, please open a new up-to-date ticket. Closing.