? timer.patch Index: secondlife.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/secondlife/secondlife.module,v retrieving revision 1.4.2.6 diff -r1.4.2.6 secondlife.module 139c139,143 < if (secondlife_timer()) { --- > > // Get a timer to compute the answer timing. > $timer_enabled = variable_get('secondlife_timer', 0); > > if ($timer_enabled) { 155c159 < if (secondlife_timer()) { --- > if ($timer_enabled) { 252,261d255 < /** < * Get a timer to compute the answer timing. < */ < function secondlife_timer() { < $timer = variable_get('secondlife_timer', ''); < if ($timer) { < return TRUE; < } < return FALSE; < }