##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
#
#-----[ COPY ]------------------------------------------------
#
# These following instructions mean...
#
# Remove all old album files (not the images, just the core files).
#
# Upload all files in directory "phpbb_root" with their structure to your phpBB root directory
#
# Remember to upload all the language files and template files to all your
# language packs and template directories
#
# If you use FTP please remember to use ASCII mode for text files (*.php, *.tpl)
# and BINARY mode for image files (*.jpg, *.gif)
# Fortunately good FTP clients today can auto-detect the mode for your files

copy phpbb_root/album_mod/upload/med_cache/*.* to album_mod/upload/med_cache/
copy phpbb_root/album_mod/upload/wm_cache/*.* to album_mod/upload/wm_cache/
copy phpbb_root/album_mod/upload/otf/*.* to album_mod/upload/otf/

#*/
#
#-----[ DIY INSTRUCTIONS ]------------------------------------
#
CHMOD these directories for Full Album Pack to work correctly.
.
CHMOD 777 album_mod/upload/med_cache
CHMOD 777 album_mod/upload/wm_cache
CHMOD 777 album_mod/upload/otf

#
#-----[ SQL ]-------------------------------------------------
#
INSERT INTO `phpbb_album_config` VALUES ('fap_version', '1.4.0');
INSERT INTO `phpbb_album_config` VALUES ('email_notification', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_download', '2');
INSERT INTO `phpbb_album_config` VALUES ('show_slideshow', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_pic_size_on_thumb', '1');
INSERT INTO `phpbb_album_config` VALUES ('hon_rate_users', '0');
INSERT INTO `phpbb_album_config` VALUES ('hon_rate_where', '');
INSERT INTO `phpbb_album_config` VALUES ('hon_rate_sep', '1');
INSERT INTO `phpbb_album_config` VALUES ('hon_rate_times', '1');
INSERT INTO `phpbb_album_config` VALUES ('disp_watermark_at', '3');
INSERT INTO `phpbb_album_config` VALUES ('wut_users', '0');
INSERT INTO `phpbb_album_config` VALUES ('use_watermark', '0');
INSERT INTO `phpbb_album_config` VALUES ('rate_type', '2');
INSERT INTO `phpbb_album_config` VALUES ('disp_rand', '1');
INSERT INTO `phpbb_album_config` VALUES ('disp_mostv', '1');
INSERT INTO `phpbb_album_config` VALUES ('disp_high', '1');
INSERT INTO `phpbb_album_config` VALUES ('disp_late', '1');
INSERT INTO `phpbb_album_config` VALUES ('img_cols', '4');
INSERT INTO `phpbb_album_config` VALUES ('img_rows', '1');
INSERT INTO `phpbb_album_config` VALUES ('midthumb_use', '1');
INSERT INTO `phpbb_album_config` VALUES ('midthumb_height', '600');
INSERT INTO `phpbb_album_config` VALUES ('midthumb_width', '800');
INSERT INTO `phpbb_album_config` VALUES ('midthumb_cache', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_files_to_upload', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_pregenerated_fields', '1');
INSERT INTO `phpbb_album_config` VALUES ('dynamic_fields', '1');
INSERT INTO `phpbb_album_config` VALUES ('pregenerate_fields', '0');
INSERT INTO `phpbb_album_config` VALUES ('propercase_pic_title', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_index_last_pic_lv', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_pics_approval', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_img_no_gd', '0');
INSERT INTO `phpbb_album_config` VALUES ('dynamic_pic_resampling', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_file_size_resampling', '1024000');
INSERT INTO `phpbb_album_config` VALUES ('switch_nuffload', '0');
INSERT INTO `phpbb_album_config` VALUES ('path_to_bin', './cgi-bin/');
INSERT INTO `phpbb_album_config` VALUES ('perl_uploader', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_progress_bar', '1');
INSERT INTO `phpbb_album_config` VALUES ('close_on_finish', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_pause', '5');
INSERT INTO `phpbb_album_config` VALUES ('simple_format', '0');
INSERT INTO `phpbb_album_config` VALUES ('multiple_uploads', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_uploads', '5');
INSERT INTO `phpbb_album_config` VALUES ('zip_uploads', '1');
INSERT INTO `phpbb_album_config` VALUES ('resize_pic', '1');
INSERT INTO `phpbb_album_config` VALUES ('resize_width', '600');
INSERT INTO `phpbb_album_config` VALUES ('resize_height', '600');
INSERT INTO `phpbb_album_config` VALUES ('resize_quality', '70');
INSERT INTO `phpbb_album_config` VALUES ('show_pics_nav', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_inline_copyright', '0');
INSERT INTO `phpbb_album_config` VALUES ('enable_nuffimage', '1');
INSERT INTO `phpbb_album_config` VALUES ('enable_sepia_bw', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_allow_avatar_gallery', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_gif_mid_thumb', '1');
INSERT INTO `phpbb_album_config` VALUES ('slideshow_script', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_exif', '0');
INSERT INTO `phpbb_album_config` VALUES ('album_bbcode', '1');

DROP TABLE `phpbb_album_sp_config`;

#
#-----[ OPEN ]------------------------------------------------
#
includes/bbcode.php
#
#-----[ FIND ]------------------------------------------------
#
	$bbcode_tpl['albumimg'] = str_replace('{IMG_NUM}', '\\1', $bbcode_tpl['albumimg']);
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
	$bbcode_tpl['fullalbumimg'] = str_replace('{IMG_NUM}', '\\1', $bbcode_tpl['fullalbumimg']);
#
#-----[ FIND ]------------------------------------------------
#
	$text = preg_replace($album_img_patterns, $album_img_replacements, $text);
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
	// [fullalbumimg]image number here[/fullalbumimg]
	$album_img_patterns[5] = "#\[fullalbumimg:$uid\]([0-9]+)\[/fullalbumimg:$uid\]#si";
	$album_img_replacements[5] = $bbcode_tpl['fullalbumimg'];

#
#-----[ FIND ]------------------------------------------------
#
	$text = preg_replace("#\[albumimg\]([0-9]+)\[/albumimg\]#sie", "'[albumimg:$uid]\\1[/albumimg:$uid]'", $text);
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
	$text = preg_replace("#\[fullalbumimg\]([0-9]+)\[/fullalbumimg\]#sie", "'[fullalbumimg:$uid]\\1[/fullalbumimg:$uid]'", $text);
#
#-----[ OPEN ]------------------------------------------------
#
includes/constants.php
#
#-----[ FIND ]------------------------------------------------
#
include($phpbb_root_path . 'album_mod/album_constants.' . $phpEx);
#
#-----[ AFTER, ADD ]------------------------------------------
#
define('LOGIN_MG', 'login.' . $phpEx);
#
#-----[ FIND ]------------------------------------------------
#
define('ALBUM_SP_CONFIG_TABLE', $table_prefix.'album_sp_config');
#
#-----[ REPLACE WITH ]----------------------------------------
#
//define('ALBUM_SP_CONFIG_TABLE', $table_prefix.'album_sp_config');
#
#-----[ OPEN ]------------------------------------------------
#
includes/usercp_viewprofile.php
#
#-----[ FIND ]------------------------------------------------
#
// Mighty Gorgon - Full Album Pack - BEGIN
$sql = 'SELECT count(*) AS pic_total
			FROM ' . ALBUM_CAT_TABLE . ' AS c, ' . ALBUM_TABLE . ' AS p
			WHERE c.cat_user_id = ' . $profiledata['user_id'] .'
			AND p.pic_cat_id = c.cat_id';

if ( !($result = $db->sql_query($sql)) )
{
	message_die(GENERAL_ERROR, 'Could not obtain ranks information', '', __LINE__, __FILE__, $sql);
}

if ( $row = $db->sql_fetchrow($result) )
{
	$totalpicrow = $row;
}
$db->sql_freeresult($result);

$language = $board_config['default_lang'];
if ( !file_exists($phpbb_root_path . 'language/lang_' . $language . '/lang_main_album.'.$phpEx) )
{
	$language = 'english';
}
include($phpbb_root_path . 'language/lang_' . $language . '/lang_main_album.' . $phpEx);

$album_config = array();
$sql = 'SELECT * FROM '. ALBUM_CONFIG_TABLE . ' WHERE config_name = \'show_all_in_personal_gallery\' LIMIT 1';
if(!$result = $db->sql_query($sql))
{
	message_die(GENERAL_ERROR, "Could not query Album config information", "", __LINE__, __FILE__, $sql);
}
$row = $db->sql_fetchrow($result);
$album_config[$row['config_name']] = $row['config_value'];
$db->sql_freeresult($result);
// Mighty Gorgon - Full Album Pack - END
#
#-----[ REPLACE WITH ]----------------------------------------
#
// Mighty Gorgon - Full Album Pack - BEGIN
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_album_main.' . $phpEx);

$album_show_pic_url = 'album_showpage.' . $phpEx;
$album_rate_pic_url = $album_show_pic_url;
$album_comment_pic_url = $album_show_pic_url;

$sql = "SELECT * FROM ". ALBUM_CONFIG_TABLE;
if(!$result = $db->sql_query($sql))
{
	message_die(GENERAL_ERROR, "Could not query album config information", "", __LINE__, __FILE__, $sql);
}
while( $row = $db->sql_fetchrow($result) )
{
	$album_config_name = $row['config_name'];
	$album_config_value = $row['config_value'];
	
	$album_config[$album_config_name] = $album_config_value;
}
$db->sql_freeresult($result);

$limit_sql = $album_config['img_cols'] * $album_config['img_rows'];
$cols_per_page = $album_config['img_cols'];

$sql = "SELECT * FROM " . ALBUM_TABLE . " AS p, " . ALBUM_CAT_TABLE . " AS c
		WHERE c.cat_user_id = " . $profiledata['user_id'] . "
		AND p.pic_cat_id = c.cat_id
		AND p.pic_approval = 1
		ORDER BY pic_time DESC";

if( !($result = $db->sql_query($sql)) )
{
	message_die(GENERAL_ERROR, 'Could not query recent pics information', '', __LINE__, __FILE__, $sql);
}

$recentrow = array();

while($row = $db->sql_fetchrow($result))
{
	$recentrow[] = $row;
}

$totalpicrow = count($recentrow);

$db->sql_freeresult($result);

if ($totalpicrow > 0)
{
	$temp_url = append_sid("album.$phpEx?user_id=" . $profiledata['user_id']);
	$album_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_album'] . '" alt="' . sprintf($lang['Personal_Gallery_Of_User'], $profiledata['username']) . '" title="' . sprintf($lang['Personal_Gallery_Of_User'], $profiledata['username']) . '" border="0" /></a>';
	$album = '<a href="' . $temp_url . '">' . sprintf($lang['Personal_Gallery_Of_User'], $profiledata['username']) . '</a>';

	$template->assign_block_vars('recent_pics_block', array());
	for ($i = 0; $i < (($totalpicrow < $limit_sql) ? $totalpicrow : $limit_sql); $i += $cols_per_page)
	{
		$template->assign_block_vars('recent_pics_block.recent_pics', array());

		for ($j = $i; $j < ($i + $cols_per_page); $j++)
		{
			if( $j >= $totalpicrow )
			{
				break;
			}

			$template->assign_block_vars('recent_pics_block.recent_pics.recent_col', array(
				'U_PIC' => ($album_config['fullpic_popup']) ? append_sid("album_pic.$phpEx?pic_id=". $recentrow[$j]['pic_id']) : append_sid($album_show_pic_url. '?pic_id='. $recentrow[$j]['pic_id']),
				'THUMBNAIL' => append_sid("album_thumbnail.$phpEx?pic_id=". $recentrow[$j]['pic_id']),
				'DESC' => $recentrow[$j]['pic_desc']
				)
			);

			$template->assign_block_vars('recent_pics_block.recent_pics.recent_detail', array(
				'TITLE' => '<a href = "'.$album_show_pic_url . '?pic_id=' . $recentrow[$j]['pic_id'] . '">' . $recentrow[$j]['pic_title'] . '</a>',
				'POSTER' => $recent_poster,
				'TIME' => create_date($board_config['default_dateformat'], $recentrow[$j]['pic_time'], $board_config['board_timezone']),

				'VIEW' => $recentrow[$j]['pic_view_count'],
				)
			);
		}
	}
}
else
{
	$album_img = '';
	$album = '';
}
// Mighty Gorgon - Full Album Pack - END
#
#-----[ FIND ]------------------------------------------------
#
	// Mighty Gorgon - Full Album Pack - BEGIN
	'U_PERSONAL_GALLERY' => append_sid("album.$phpEx?user_id=" . $profiledata['user_id']),
	'L_PERSONAL_GALLERY' => sprintf($lang['Personal_Gallery_Of_User_Profile'], $profiledata['username'], $totalpicrow['pic_total']),

	'U_TOGGLE_VIEW_ALL' => append_sid("album.$phpEx?user_id=" . $profiledata['user_id'] . "&mode=" . ALBUM_VIEW_ALL),
	'TOGGLE_VIEW_ALL_IMG' => $images['mini_all_pic_view_mode'],
	'L_TOGGLE_VIEW_ALL' => sprintf($lang['Show_All_Pic_View_Mode_Profile'], $profiledata['username']),

	'U_ALL_IMAGES_BY_USER' => append_sid("album.$phpEx?user_id=" . $profiledata['user_id'] . "&mode=" . ALBUM_VIEW_LIST),
	'L_ALL_IMAGES_BY_USER' => sprintf($lang['Picture_List_Of_User'], $profiledata['username']),
	// Mighty Gorgon - Full Album Pack - END
#
#-----[ REPLACE WITH ]----------------------------------------
#
	// Mighty Gorgon - Full Album Pack - BEGIN
	'ALBUM_IMG' => $album_img,
	'ALBUM' => $album,

	'U_PERSONAL_GALLERY' => append_sid("album.$phpEx?user_id=" . $profiledata['user_id']),
	'L_PERSONAL_GALLERY' => sprintf($lang['Personal_Gallery_Of_User_Profile'], $profiledata['username'], $totalpicrow),

	'U_TOGGLE_VIEW_ALL' => append_sid("album.$phpEx?user_id=" . $profiledata['user_id'] . "&mode=" . ALBUM_VIEW_ALL),
	'TOGGLE_VIEW_ALL_IMG' => $images['mini_all_pic_view_mode'],
	'L_TOGGLE_VIEW_ALL' => sprintf($lang['Show_All_Pic_View_Mode_Profile'], $profiledata['username']),

	'U_ALL_IMAGES_BY_USER' => append_sid("album.$phpEx?user_id=" . $profiledata['user_id'] . "&mode=" . ALBUM_VIEW_LIST),
	'L_ALL_IMAGES_BY_USER' => sprintf($lang['Picture_List_Of_User'], $profiledata['username']),

	'L_PERSONAL_ALBUM' => $lang['Your_Personal_Gallery'],
	'L_PIC_TITLE' => $lang['Pic_Image'],
	'L_POSTER' => $lang['Pic_Poster'],
	'L_POSTED' => $lang['Posted'],
	'L_VIEW' => $lang['View'],
	'TARGET_BLANK' => ($album_config['fullpic_popup']) ? 'target="_blank"' : '',
	'L_NO_PICS' => $lang['No_Pics'],
	'L_RECENT_PUBLIC_PICS' => $lang['Recent_Public_Pics'],
	'S_COLS' => $album_config['cols_per_page'],
	'S_COL_WIDTH' => (100/$album_config['cols_per_page']) . '%',
	// Mighty Gorgon - Full Album Pack - END
#
#-----[ OPEN ]------------------------------------------------
#
templates/subSilver/admin/page_header.tpl
#
#-----[ FIND ]------------------------------------------------
#
/* Mighty Gorgon - Full Album Pack - BEGIN */
.tab_links, a.tab_links:hover, a.tab_links:link, a.tab_links:active, a.tab_links:visited { 
	font-size: 11px;
	color: #FFA34F; 
	text-decoration: none;
}

a.tab_links:hover { 
	text-decoration: underline;
}

.tab_headers, th.tab_headers {
	color: #FFA34F; 
	font-size: 11px; 
	font-weight : bold;
	padding-left: 4px;
	padding-right: 8px;
	border: #003366; 
	border-style: solid; 
	border-width: 1px 1px 0px 1px;
	background-color: #006699;
}

.tab_border	{ background-color: #E5E5E5; border: 0px;}

.filler, th.filler {
	background-color:#E5E5E5; 
	background-image:none;
}
/* Mighty Gorgon - Full Album Pack - END */
#
#-----[ REPLACE WITH ]----------------------------------------
#
/* Mighty Gorgon - Full Album Pack - BEGIN */
.forumline_left {
	background-color: {T_TD_COLOR2};
	border-bottom: 2px {T_TH_COLOR2} solid;
	border-left: 2px {T_TH_COLOR2} solid;
}

.tab_links, a.tab_links:hover, a.tab_links:link, a.tab_links:active, a.tab_links:visited { 
	font-size: 11px;
	color: #FF8866; 
	text-decoration: none;
}

.tab_links_unsel, a.tab_links_unsel:hover, a.tab_links_unsel:link, a.tab_links_unsel:active, a.tab_links_unsel:visited { 
	font-size: 11px;
	color: #FFFFAA; 
	text-decoration: none;
}

a.tab_links:hover, a.tab_links_unsel:hover { 
	text-decoration: underline;
}

.tab_headers, th.tab_headers {
	color: #FF8866; 
	font-size: 11px; 
	font-weight : bold;
	padding-left: 4px;
	padding-right: 8px;
	border: #003366; 
	border-style: solid; 
	border-width: 1px 1px 0px 1px;
	background-color: #006699;
}

.tab_headers_unsel, th.tab_headers_unsel {
	color: #FFFFAA; 
	font-size: 11px; 
	font-weight : bold;
	padding-left: 4px;
	padding-right: 8px;
	border: #336699; 
	border-style: solid; 
	border-width: 1px 1px 0px 1px;
	background-color: #6699AA;
}

.tab_border {
	background-color: #888888;
	border: 1px;
}

.filler, th.filler {
	background-color:#6699AA; 
	background-image:none;
}
/* Mighty Gorgon - Full Album Pack - END */
#
#-----[ FIND ]------------------------------------------------
#
@import url("templates/subSilver/formIE.css");
#
#-----[ REPLACE WITH ]----------------------------------------
#
/* @import url("templates/subSilver/formIE.css"); */
#
#-----[ OPEN ]------------------------------------------------
#
templates/subSilver/bbcode.tpl
#
#-----[ FIND ]------------------------------------------------
#
<!-- BEGIN albumimg --><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_thumbnail.php?pic_id={IMG_NUM}" alt="Image" title="Image" border="0" /></a><!-- END albumimg -->
<!-- BEGIN albumimgl --><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_thumbnail.php?pic_id={IMG_NUM}" border="0" align="left" /></a><!-- END albumimgl -->
<!-- BEGIN albumimgr --><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_thumbnail.php?pic_id={IMG_NUM}" border="0" align="right" /></a><!-- END albumimgr -->
<!-- BEGIN albumimgc --><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_thumbnail.php?pic_id={IMG_NUM}" border="0" align="center" /></a><!-- END albumimgc -->
#
#-----[ REPLACE WITH ]----------------------------------------
#
<!-- BEGIN fullalbumimg --><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_picm.php?pic_id={IMG_NUM}" alt="Image {IMG_NUM}" title="Image {IMG_NUM}" border="0" /></a><!-- END fullalbumimg -->
<!-- BEGIN albumimg --><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_thumbnail.php?pic_id={IMG_NUM}" alt="Image {IMG_NUM}" title="Image {IMG_NUM}" border="0" /></a><!-- END albumimg -->
<!-- BEGIN albumimgl --><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_thumbnail.php?pic_id={IMG_NUM}" border="0" align="left" alt="Image {IMG_NUM}" title="Image {IMG_NUM}" /></a><!-- END albumimgl -->
<!-- BEGIN albumimgr --><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_thumbnail.php?pic_id={IMG_NUM}" border="0" align="right" alt="Image {IMG_NUM}" title="Image {IMG_NUM}" /></a><!-- END albumimgr -->
<!-- BEGIN albumimgc --><center><a href="album_showpage.php?pic_id={IMG_NUM}" target="_blank" class="postlink"><img src="album_thumbnail.php?pic_id={IMG_NUM}" border="0" align="center" alt="Image {IMG_NUM}" title="Image {IMG_NUM}" /></a></center><!-- END albumimgc -->
#
#-----[ OPEN ]------------------------------------------------
#
templates/subSilver/profile_view_body.tpl
#
#-----[ FIND ]------------------------------------------------
#
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr> 
	<td align="right"><span class="nav"><br />{JUMPBOX}</span></td>
  </tr>
</table>
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
<!-- BEGIN recent_pics_block -->
<br />
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
	<tr>
		<th class="thTop" height="25" colspan="{S_COLS}" nowrap="nowrap">{L_RECENT_PUBLIC_PICS}</th>
	</tr>
	<!-- BEGIN no_pics -->
	<tr>
		<td class="row1" align="center" colspan="{S_COLS}" height="50"><span class="gen">{L_NO_PICS}</span></td>
	</tr>
	<!-- END no_pics -->
	<!-- BEGIN recent_pics -->
	<tr>
		<!-- BEGIN recent_col -->
		<td class="row1" width="{S_COL_WIDTH}" align="center">
			<a href="{recent_pics_block.recent_pics.recent_col.U_PIC}" {}><img src="{recent_pics_block.recent_pics.recent_col.THUMBNAIL}" border="0" alt="{recent_pics_block.recent_pics.recent_col.DESC}" title="{recent_pics_block.recent_pics.recent_col.DESC}" vspace="10" /></a>
		</td>
		<!-- END recent_col -->
	</tr>
	<tr>
		<!-- BEGIN recent_detail -->
		<td class="row2" align="center">
			<span class="gensmall">
				{L_PIC_TITLE}: {recent_pics_block.recent_pics.recent_detail.TITLE}<br />
				{L_POSTER}: {recent_pics_block.recent_pics.recent_detail.POSTER}<br />
				{L_POSTED}: {recent_pics_block.recent_pics.recent_detail.TIME}<br />
				{L_VIEW}: {recent_pics_block.recent_pics.recent_detail.VIEW}<br />
			</span>
		</td>
		<!-- END recent_detail -->
	</tr>
	<!-- END recent_pics -->
</table>
<br />
<!-- END recent_pics_block -->
#
#-----[ OPEN ]------------------------------------------------
#
templates/subSilver/subSilver.cfg
#
#-----[ FIND ]------------------------------------------------
#
// Mighty Gorgon - Full Album Pack - BEGIN
$images['icon_left_arrow3'] = "$current_template_images/icon_left_arrow3.gif";
$images['icon_right_arrow3'] = "$current_template_images/icon_right_arrow3.gif";
$images['no_thumbnail'] = "$current_template_images/nothumbnail.jpg";
$images['mini_new_pictures'] = "$current_template_images/icon_minipost_new.gif";
$images['mini_all_pic_view_mode'] = "$current_template_images/icon_mini_showall.gif";
$images['icon_album'] = "$current_template_images/{LANG}/icon_album.gif";
$images['manage_pic'] = "$current_template_images/{LANG}/manage_pic.gif";
$images['upload_pic'] = "$current_template_images/{LANG}/upload_pic.gif";
$images['download_pic'] = "$current_template_images/{LANG}/download.gif";
$images['all_pic_view_mode'] = "$current_template_images/{LANG}/simple_view.gif";
$images['normal_pic_view_mode'] = "$current_template_images/{LANG}/normal_view.gif";
$images['show_all_pics'] = "$current_template_images/{LANG}/show_all_pics.gif";
$images['show_all_ratings'] = "$current_template_images/{LANG}/show_all_ratings.gif";
$images['show_all_comments'] = "$current_template_images/{LANG}/show_all_comments.gif";
// Mighty Gorgon - Full Album Pack - END
#
#-----[ REPLACE WITH ]----------------------------------------
#
// Mighty Gorgon - Full Album Pack - BEGIN
$images['icon_left_arrow3'] = "$current_template_images/icon_left_arrow3.gif";
$images['icon_right_arrow3'] = "$current_template_images/icon_right_arrow3.gif";
$images['no_thumbnail'] = "$current_template_images/nothumbnail.jpg";
$images['spacer'] = "$current_template_images/spacer.gif";
$images['mini_new_pictures'] = "$current_template_images/icon_minipost_new.gif";
$images['mini_all_pic_view_mode'] = "$current_template_images/icon_mini_showall.gif";
$images['icon_album'] = "$current_template_images/{LANG}/icon_album.gif";
$images['manage_pic'] = "$current_template_images/{LANG}/manage_pic.gif";
$images['upload_pic'] = "$current_template_images/{LANG}/upload_pic.gif";
$images['download_pic'] = "$current_template_images/{LANG}/download.gif";
$images['all_pic_view_mode'] = "$current_template_images/{LANG}/simple_view.gif";
$images['normal_pic_view_mode'] = "$current_template_images/{LANG}/normal_view.gif";
$images['show_all_pics'] = "$current_template_images/{LANG}/show_all_pics.gif";
$images['show_all_ratings'] = "$current_template_images/{LANG}/show_all_ratings.gif";
$images['show_all_comments'] = "$current_template_images/{LANG}/show_all_comments.gif";
$images['orange_dot'] = "$current_template_images/orange_dot.png";
$images['blue_dot'] = "$current_template_images/blue_dot.png";
$images['green_dot'] = "$current_template_images/green_dot.png";
$images['yellow_dot'] = "$current_template_images/yellow_dot.png";
// Mighty Gorgon - Full Album Pack - END
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
#
# EoM
