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
Comment #1
bobthecow commentedThat'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.
Comment #2
afandyag commentedremoving ", $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'))."'>";Comment #3
phayes commentedBizzar. 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.
Comment #4
phayes commentedComment #5
Roulion commentedi just have a question? How to add the Gmap_PHYSICAL layout in the base Maps tabs ?
Comment #6
phayes commentedRight 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