Hi,

After I've installed simplenews digest, I go to Digest newsletter settings and this error arise:

Fatal error: Call to undefined function _simplenews_get_vid() in \modules\simplenews_digest\simplenews_digest.module on line 52

I've Drupal 5.9.

Comments

robbiew’s picture

Same error here.

robbiew’s picture

Fixed with this adding this code to the top of simplenews_digest.module:

if (!function_exists('_simplenews_get_vid')) {
  function _simplenews_get_vid() {
    return variable_get('simplenews_vid', '');
  }
}
iraszl’s picture

The fix works! Thanks!

alex72rm’s picture

Status: Active » Closed (fixed)
bnice5000’s picture

Status: Closed (fixed) » Postponed (maintainer needs more info)

This fix currently fixes the issues that I was having with the module. Is this a fix that is going to be added to the HEAD?

--Brian

andrewlevine’s picture

Status: Postponed (maintainer needs more info) » Active

Alex72RM, I don't see any commits to this project. Any reason you closed the issue?

Steve Dondley’s picture

Status: Active » Fixed

Thanks for the patch!

alex72rm’s picture

Sorry for the closing action. I meant that the fixing action into #2 works well.

Alessandro

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.