I use drupal 6.10 with thse location modules:
- geobrowser
- location
- geo
- gmap
- gmap addons

On the geobrowser settings page, when i click on the Base Maps, i get this error "Fatal error: Unsupported operand types in \includes\common.inc on line 1376"

Comments

bobthecow’s picture

That's a url() call using the old parameters. If nobody takes this task (it's been sitting for a few days) or if you want to dig it out yourself, or if you just want it to go away, check out the writeup I did on The 'Unsupported Operand type' error in Drupal 6 and how I got rid of it. Use the "just make things work" option as a bandaid until the module gets fixed.

afandyag’s picture

removing ", $options" from line 202 on geobrowser.module should fix the problem

from line 202 : $output .= "<form method='post' action='".check_url(url('admin/settings/geobrowser/basemap', $options))."'>";

to : $output .= "<form method='post' action='".check_url(url('admin/settings/geobrowser/basemap'))."'>";

phayes’s picture

Bizzar. I fixed this a while ago. And getting geobrowser from cvs has this problem fixed. Yet the dev version for download isn't the same as what's in cvs.

So, you may download the fixed version from cvs until I get this worked out.

phayes’s picture

Status: Active » Fixed
Roulion’s picture

i just have a question? How to add the Gmap_PHYSICAL layout in the base Maps tabs ?

phayes’s picture

Right now you'll have to edit javascript in browser.php . I'll add it as a new item in the feature request list here in the issue tracker

Status: Fixed » Closed (fixed)

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