The panels.install and panels.mini.install still use db_fetch_object() which has been removed in D7:
$ grep -R db_fetch_object *
panels.install: while ($pane = db_fetch_object($result)) {
panels.install: while ($display = db_fetch_object($result)) {
panels.install: while ($page = db_fetch_object($result)) {
panels.install: while ($pane = db_fetch_object($result)) {
panels.install: while ($display = db_fetch_object($result)) {
panels.install: while ($p = db_fetch_object($result)) {
panels_mini/panels_mini.install: while ($mini = db_fetch_object($result)) {
panels_mini/panels_mini.install: while ($mini = db_fetch_object($result)) {
I created a patch according to http://drupal.org/update/modules/6/7#dbtng.
| Comment | File | Size | Author |
|---|---|---|---|
| panels-remove-db_fetch_object.patch | 3.52 KB | guidot |
Comments
Comment #1
merlinofchaos commentedIt's likely none of those update functions will work anyhow. Removed them instead, there's not much point to trying to maintain them.