User login

hook_module_implements_alter called before schema is installed

I thought .module files were not supposed to be loaded and available until after .install files were run, but whatever is the intention, it is absolutely certain that at least this hook can be implemented before the module is truly installed.

<?php
/**
 * Implements hook_module_implements_alter().
 */
function xray_module_implements_alter(&$implementations, $hook) {
  debug('hook called');
  // As hook_module_implements is invoked somehow
  static $table = NULL;
  if ($table === FALSE || !($table = db_table_exists('xray_hook'))) {
    debug('table does not exist');
    return;
  }
  debug('table exists');
}
?>

And the debug output from this function when the module is installed (if you get bored, there's no text after this-- and the debug output shows that it is called with the table not existing a bunch of times and then with the table existing a bunch more times.

* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* The configuration options have been saved.
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table does not exist'

in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'hook called'

in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:

'table exists'

in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).

Searched words: 
Additional uncaught exception thrown while handling exception. Original Additional PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table doesn't exist

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <blockquote> <small> <h2> <h3> <h4> <h5> <h6> <sub> <sup> <p> <br> <strike> <table> <tr> <td> <thead> <th> <tbody> <tt> <output>
  • Lines and paragraphs break automatically.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.