Posted by Scott Reynolds on December 7, 2009 at 1:54am
4 followers
Jump to:
| Project: | Activity |
| Version: | 6.x-2.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
<?php
// 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
<?php
// 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
#1
This may be partially working. It definitely closed the error mentioned in Activity2 and UR integration but still access api not working.
#2
subscribing
#3
This def fixed a bug. Committed and fix
http://drupal.org/cvs?commit=298938
#4
Automatically closed -- issue fixed for 2 weeks with no activity.