Closed (fixed)
Project:
Nodereference Count
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Jun 2011 at 17:03 UTC
Updated:
16 Jul 2011 at 20:21 UTC
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...