Closed (fixed)
Project:
Messaging
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Jan 2009 at 17:16 UTC
Updated:
5 Feb 2009 at 19:20 UTC
lastest update (messaging_update_6003) calls db_change_field and tries to pass a variable by reference. Results in error:
Call-time pass-by-reference has been deprecated
Change line 201 of messaging.install from:
db_change_field(&$ret, 'messaging_store', 'params', 'params', array('type' => 'text', 'not null' => TRUE, 'size' => 'big', 'serialize' => TRUE));
to:
db_change_field($ret, 'messaging_store', 'params', 'params', array('type' => 'text', 'not null' => TRUE, 'size' => 'big', 'serialize' => TRUE));
Comments
Comment #1
jose reyero commentedAlready fixed, thanks.