At the top of the text module, this code fails when run from an install profile:

include_once('./'. drupal_get_path('module', 'content') .'/content.module');

It should be this (drupal_get_path doesn't work at install time):

include_once(dirname(__FILE__) . '/../../content.module');

This change has already been made in content.module, presumably for the same reason. It needs to be done everywhere else too.

Comments

karens’s picture

Status: Active » Fixed

This has since been fixed.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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