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);
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
Comment #1
gilgabar commentedThanks for catching this. The fix has been committed and should show up in a dev release shortly.
http://drupal.org/commitlog/commit/13378/0f3831688e8dfb2c6ea392edb2e22ee...