// Set the defaults. Not all modules implement the full api
        if (!isset($info->path)) {
          $info->path = drupal_get_path('module', $module);
        }
        elseif (file_exists('./'. $info->path .'/'. $module .'.activity.inc')) {
          require_once './'. $info->path .'/'. $module .'.activity.inc';
        }

Probably should be

        // Set the defaults. Not all modules implement the full api
        if (!isset($info->path)) {
          $info->path = drupal_get_path('module', $module);
        }
    
        // Include the activity file.
        if (file_exists('./'. $info->path .'/'. $module .'.activity.inc')) {
          require_once './'. $info->path .'/'. $module .'.activity.inc';
        }

Comments

ajayg’s picture

Status: Active » Needs work

This may be partially working. It definitely closed the error mentioned in Activity2 and UR integration but still access api not working.

Bilmar’s picture

subscribing

Scott Reynolds’s picture

Status: Needs work » Fixed

This def fixed a bug. Committed and fix
http://drupal.org/cvs?commit=298938

Status: Fixed » Closed (fixed)

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