打開 include/functions.inc.php
尋找:
$thumb_list[$i]['aid'] = $row['aid'];
之後加上:
$thumb_list[$i]['pid'] = $row['pid'];
$thumb_list[$i]['pwidth'] = $row['pwidth'];
$thumb_list[$i]['pheight'] = $row['pheight'];
打開 themes/classic/theme.php
尋找:
<a href="{LINK_TGT}">{THUMB}<br /></a>
複製:
<a href="{LINK_TGT}" onclick="{ON_CLICK}">{THUMB}<br /></a>
尋找:
$params = array('{CELL_WIDTH}' => $cell_width,
'{LINK_TGT}' => "displayimage.php?album=$aid$cat_link&pos={$thumb['pos']}",
'{THUMB}' => $thumb['image'],
'{CAPTION}' => $thumb['caption'],
'{ADMIN_MENU}' => $thumb['admin_menu']
);
複製:
$params = array('{CELL_WIDTH}' => $cell_width,
'{LINK_TGT}' => "javascript:;",
'{ON_CLICK}' => "MM_openBrWindow('displayimage.php?pid=".$thumb['pid']."&fullsize=1','" . uniqid(rand()) . "','scrollbars=yes,toolbar=yes,status=yes,resizable=yes,width=".$thumb['pwidth'].",height=".$thumb['pheight']."')",
'{THUMB}' => $thumb['image'],
'{CAPTION}' => $thumb['caption'],
'{ADMIN_MENU}' => $thumb['admin_menu']
);
來源: http://coppermine.sourceforge.net/board/index.php?topic=14242.0