on line 463 of mixpanel.module we can found a drupal_queue_get()
it causes this error:
Fatal error: Call to undefined function drupal_queue_get() in /home/leandro/public_html/tompok/sites/all/modules/contrib/mixpanel/mixpanel.module on line 463
it should be
$queue = DrupalQueue::get('mixpanel_track');
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | mixpanel-2636078-1.patch | 351 bytes | leandro713 |
Comments
Comment #2
leandro713 commentedi attach a patch
Comment #3
hgoto commentedThank you for sharing the issue.
The patch works for me. Surely
drupal_queue_get()is a function in D6 and was replaced byDrupalQueue::get()in D7. I'd like change the status to RTBC.Comment #5
dsnopekCommitted, thanks!