Here's a (very minor) improvement of the Geeklog / Gallery integration to make Geeklog pick up Gallery's page title.
Open the file
html_wrap/wrapper.header.default
. Near the end of the file, you'll find this:
Text Formatted Code
case 'GeekLog':
/*
** Display header and left blocks
*/
echo COM_siteHeader();
break;
Change this to:
Text Formatted Code
case 'GeekLog':
/*
** Display header and left blocks
*/
global $_CONF;
$_CONF['pagetitle'] = $gallery->app->galleryTitle;
echo COM_siteHeader();
break;
Now when you call up your integrated Gallery, the page title should read "Your Site Name Here - Gallery". Unfortunately, Gallery doesn't seem to use the page title that much - it would be nice if it displayed the name of the current album there, for example. But it's a start ...
bye, Dirk