Quote:
Originally Posted by Gommeke
|
It has to do with editor settings on your board. I haven't found the exact reason yet.
Open the vbgooglemaphse.php in an editor
Somewhere in the 200's
PHP Code:
if ($vbulletin->GPC['message'] == '' )
{
eval(standard_error(fetch_error('fulltext_empty')));
}
if ($vbulletin->GPC['title_map'] == '' )
{
eval(standard_error(fetch_error('title_map_empty')));
}
if ($vbulletin->GPC['text_map'] == '' )
{
eval(standard_error(fetch_error('text_map_empty')));
}
And comment those out
PHP Code:
/*
if ($vbulletin->GPC['message'] == '' )
{
eval(standard_error(fetch_error('fulltext_empty')));
}
if ($vbulletin->GPC['title_map'] == '' )
{
eval(standard_error(fetch_error('title_map_empty')));
}
if ($vbulletin->GPC['text_map'] == '' )
{
eval(standard_error(fetch_error('text_map_empty')));
}
*/
That should get you passed the error checking.
I'm looking for a more final solution for this issue. It must be something really stupid but I can't put my finger on it yet.