Index: persistent_login.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/persistent_login/Attic/persistent_login.module,v retrieving revision 1.23.2.19 diff -u -w -b -p -r1.23.2.19 persistent_login.module --- persistent_login.module 20 Sep 2009 23:12:11 -0000 1.23.2.19 +++ persistent_login.module 7 Jan 2010 00:24:17 -0000 @@ -374,6 +374,10 @@ function _persistent_login_check() { // was right. This means two browsers are sharing the cookie, // so someone is cheating. Panic. + // watchdog() needs a module that is not loaded yet during hook_boot(), + // and t() needs the language initialized... just finish booting. + drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); + // Reset PL state in $_SESSION. $d = array(); _persistent_login_invalidate('stolen', 'uid = %d', $uid);