There is actually setting to turn it off.
Under Admin -> Gallery configuration -> Settings -> Layout
Uncheck show member galleries on index.
Oh....

...sorry....

Thank's!
My friend makes little modify in Gallery.php ..now if i click on the thumbnail opens the topic !
// Show top Tabs
TopButtonTabs();
/*
EDIT BY: Roberto, 7 nov 2008:
faccio in modo di recuperare ID_TOPIC
e fare un redirect(bastera'?) al volo sul topic del forum,
solo se ID_TOPIC > 0
*/
$dbresult = db_query("
SELECT
ID_PICTURE, USER_ID_CAT, ID_CAT , ID_TOPIC
FROM {$db_prefix}gallery_pic
WHERE ID_PICTURE = $id LIMIT 1", __FILE__, __LINE__);
$row = mysql_fetch_assoc($dbresult);
/** EDIT BY: Roberto, 7 nov 2008 */
if ($row['ID_TOPIC'] > 0) {
//http://www.macroforum.org/index.php/topic,28.0.html
header('Location: /prova/index.php/topic,' . $row['ID_TOPIC'] . '.0.html');
exit();
}
$USER_ID_CAT = $row['USER_ID_CAT'];
mysql_free_result($dbresult);