Closed (fixed)
Project:
Old Online
Version:
4.1.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
19 Jun 2003 at 13:41 UTC
Updated:
9 Nov 2003 at 05:14 UTC
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
Comment #1
univie commentedComment #2
(not verified) commentedError 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) );
}
Comment #3
ax commentedsuperceded by the built-in statistics module. removed from the 4.1.0 branch. CLOSING.