Using the online.module produces this error in 4.2rc when going to -> Administration » site configuration » modules

Fatal error: Cannot redeclare throttle_status() (previously declared in /usr/home/drupal/html/drupal42/modules/online.module:170) in /usr/home/drupal/html/drupal42/modules/statistics.module on line 847

Comments

univie’s picture

Assigned: killes@www.drop.org » al
Anonymous’s picture

Version: » 4.1.x-1.x-dev
Component: modules » User interface

Error is also present in v4.10.

statistics.module (line 873):
function throttle_status() {
static $throttle;

$throttle = variable_get("statistics_throttle_level", 0);

return $throttle;
}

online.module (line 169):
function throttle_status() {
return( variable_get("throttle",0) );
}

ax’s picture

superceded by the built-in statistics module. removed from the 4.1.0 branch. CLOSING.