I received this error message.

FWIW, the error goes away if I replace this line at line 186:

    $table = array_pop(array_keys($db_info));

With these lines:

    $temp = array_keys($db_info);
    $table = array_pop($temp);

Comments

gilgabar’s picture

Status: Active » Fixed

Thanks for catching this. The fix has been committed and should show up in a dev release shortly.

http://drupal.org/commitlog/commit/13378/0f3831688e8dfb2c6ea392edb2e22ee...

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.