If throttle.module is not enabled, the function throttle_status won't exist, and will throw a PHP error.

Solution:
in function autotimezone_init(), make the if statement read:

if (!function_exists('throttle_status') || !throttle_status()) {
...
}

Comments

LukeLast’s picture

Status: Active » Fixed

Good catch, thanks.
Committed to CVS.

Anonymous’s picture

Status: Fixed » Closed (fixed)