vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced Links Directory > vBa Links Directory v4.0 Support > Troubleshooting & Problems

Reply
 
Thread Tools Display Modes
  #1  
Old 11-30-2011, 03:37 PM
armchairproduct armchairproduct is offline
Member
 
Join Date: May 2009
Posts: 53
Default Problem after vB 4.1.8 upgrade - Array?

For some reason, after upgrading vBulletin to v4.1.8, I now have the word 'Array' appearing twice on the Link Details pages.

Any ideas please Brian?
Attached Images
File Type: gif Array.GIF (2.2 KB, 10 views)
Reply With Quote
  #2  
Old 12-07-2011, 10:27 AM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

Have you customized your 'ADV_LINKS_SHOWLINK' template at all?
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #3  
Old 12-08-2011, 12:02 AM
armchairproduct armchairproduct is offline
Member
 
Join Date: May 2009
Posts: 53
Default

Quote:
Originally Posted by Brian View Post
Have you customized your 'ADV_LINKS_SHOWLINK' template at all?
Hi Brian, thanks for your help.

The answer is yes. It needed a mod sometime ago. Here is the current code:

Code:
 {vb:stylevar htmldoctype}
<html dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" xmlns="http://www.w3.org/1999/xhtml">
<head>

{vb:raw headinclude}

<title>{vb:raw link.name} - {vb:raw vba_options.links_title}</title>

<vb:if condition="$vboptions['storecssasfile']">
	<link rel="stylesheet" type="text/css" href="{vb:raw vboptions.bburl}/{vb:raw vbcsspath}showthread-rollup.css" />
<vb:else />
	<link rel="stylesheet" type="text/css" href="{vb:raw vboptions.bburl}/{vb:raw vbcsspath}showthread.css,postlist.css,postbit.css,editor.css,bbcode.css" />
</vb:if>

<script type="text/javascript" src="clientscript/vba_links_global.js?v={vb:raw vba_options.links_simpleversion}"></script>

<vb:if condition="$show['inlinemod']">
	<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/vbulletin_inlinemod.js?v={vb:raw vboptions.simpleversion}"></script>
</vb:if>

<vb:if condition="$vba_options['links_showquickreply']">
	<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/vbulletin_textedit.js?v={vb:raw vboptions.simpleversion}"></script>
	<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/vbulletin_quick_reply.js?v={vb:raw vboptions.simpleversion}"></script>
</vb:if>

<script type="text/javascript">
<!--
	var VBA_LINKS_HOMEURL = '{vb:raw vba_options.links_homeurl}';

	function openimwindow(imtype, userid, width, height)
	{
		return openWindow("{vb:raw vboptions.bburl}/sendmessage.php?" + SESSIONURL + "do=im&type=" + imtype + "&userid=" + userid, width, height);
	}
-->
</script>

{vb:raw headinclude_bottom}

</head>
<body>

{vb:raw header}

{vb:raw navbar}

{vb:raw linksnav}

<div id="pagetitle" class="pagetitle">
	<h1>{vb:rawphrase link}: <span class="threadtitle"><a href="{vb:raw link.url}" title="{vb:rawphrase reload_this_page}">{vb:raw link.name}</a></span></h1>
</div>

<div id="thread_controls" class="thread_controls">
	<div>
		<ul class="popupgroup" id="vba_controls">
			<!-- Link Tools -->
			<li class="popupmenu nohovermenu" id="linkopts">
				<h6><a href="javascript://" class="popupctrl" rel="nofollow">{vb:rawphrase link_options}</a></h6>
				<ul class="popupbody popuphover">
					<vb:if condition="$show['replylink']">
						<li><a href="newreply.php?{vb:raw session.sessionurl}l={vb:raw link.linkid}" rel="nofollow">{vb:rawphrase post_reply}</a></li>
					</vb:if>
					<vb:if condition="$vba_options['links_allowfav'] AND $bbuserinfo['userid']">
						<li>
							<vb:if condition="$link['isfavorite']">
								<a onclick="vba_add_fav({vb:raw link.linkid});" href="javascript://"><span id="fav_{vb:raw link.linkid}">{vb:rawphrase remove_from_favorites}</span></a>
							<vb:else />
								<a onclick="vba_add_fav({vb:raw link.linkid});" href="javascript://"><span id="fav_{vb:raw link.linkid}">{vb:rawphrase add_to_favorites}</span></a>
								</vb:if>
						</li>
					</vb:if>
					<vb:if condition="$show['sendtofriend']">
						<li><a href="misc.php?{vb:raw session.sessionurl}do=sendtofriend&amp;l={vb:raw link.linkid}&amp;return=link" rel="nofollow">{vb:rawphrase send_to_friend}</a></li>
					</vb:if>
					<vb:if condition="$show['subscribe']">
						<li>
							<vb:if condition="$link['issubscribed']">
								<a onclick="vba_add_subscr({vb:raw link.linkid});" href="javascript://"><span id="subscr_{vb:raw link.linkid}">{vb:rawphrase unsubscribe_from_link}</span></a>
							<vb:else />
								<a onclick="vba_add_subscr({vb:raw link.linkid});" href="javascript://"><span id="subscr_{vb:raw link.linkid}">{vb:rawphrase subscribe_to_link}</span></a>
							</vb:if>
						</li>
					</vb:if>
					<vb:if condition="$show['report_link']">
						<li><a href="misc.php?{vb:raw session.sessionurl}do=report&amp;linkid={vb:raw link.linkid}" rel="nofollow">{vb:rawphrase report_to_moderator}</a></li>
					</vb:if>
				</ul>
			</li>
			
			<!-- Admin Options -->
			<vb:if condition="$show['modopts']">
				<li class="popupmenu nohovermenu" id="adminopts">
					<h6><a href="javascript://" class="popupctrl" rel="nofollow">{vb:rawphrase admin_options}</a></h6>
					<form action="moderate.php" method="post">
					<input type="hidden" name="linkid" value="{vb:raw link.linkid}" />
					<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
					<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
					<ul class="popupbody popuphover">
						<li>
							<label for="sticklink">
							<vb:if condition="$link['sticky']">
								<input id="sticklink" name="do" type="radio" value="unsticklink" /> {vb:rawphrase unstick_x, {vb:rawphrase link}}
							<vb:else />
								<input id="sticklink" name="do" type="radio" value="sticklink" /> {vb:rawphrase stick_x, {vb:rawphrase link}}
							</vb:if>
							</label>
						</li>
						<li>
							<vb:if condition="$link['open']">
								<label for="closelink"><input id="closelink" name="do" type="radio" value="closelink" /> {vb:rawphrase close_x, {vb:rawphrase link}}</label>
							<vb:else />
								<label for="closelink"><input id="closelink" name="do" type="radio" value="openlink" /> {vb:rawphrase open_x, {vb:rawphrase link}}</label>
							</vb:if>
						</li>
						<vb:if condition="$countreplies['count']">
							<li>
								<label for="deleteposts"><input id="deleteposts" name="do" type="radio" value="deleteposts" /> {vb:rawphrase delete_posts}</label>
							</li>
						</vb:if>
						<li>
							<label for="deletelink"><input id="deletelink" name="do" type="radio" value="deletelink" /> {vb:rawphrase delete_x, {vb:rawphrase link}}</label>
						</li>
						<li class="formsubmit">
							<input class="button" type="submit" value="{vb:rawphrase perform_action}" />
						</li>
					</ul>
					</form>
				</li>
			</vb:if>
		
			<!-- Rate Link -->
			<vb:if condition="$show['ratelink']">
				<li class="popupmenu nohovermenu" id="ratelink">
					<h6>
						<a href="javascript://" class="popupctrl" rel="nofollow">
							<vb:if condition="$link['votetotal']">
								<span class="rating r{vb:raw link.roundrating}" title="{vb:rawphrase x_votes_y_average, {vb:raw link.votenum}, {vb:raw link.truerating}}">{vb:rawphrase rating}:</span>
							<vb:else />
								{vb:rawphrase rate_link}
							</vb:if>
						</a>
					</h6>
					<form action="newreply.php" method="post">
					<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
					<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
					<input type="hidden" name="do" value="rate" />
					<input type="hidden" name="linkid" value="{vb:raw link.linkid}" />
					<input type="hidden" name="showlink" value="1" />
					<ul class="popupbody popuphover">
						<vb:if condition="$show['whoratedlink']">
							<li><a href="javascript://" onclick="open_rating_window({vb:raw link.linkid});">{vb:rawphrase view_other_members_ratings}</a></li>
						</vb:if>
						<li><label for="vote5"><span class="rating r5"><input id="vote5" name="vote" type="radio" value="5" /> {vb:rawphrase excellent}</span></label></li>
						<li><label for="vote4"><span class="rating r4"><input id="vote4" name="vote" type="radio" value="4" /> {vb:rawphrase good}</span></label></li>
						<li><label for="vote3"><span class="rating r3"><input id="vote3" name="vote" type="radio" value="3" /> {vb:rawphrase average}</span></label></li>
						<li><label for="vote2"><span class="rating r2"><input id="vote2" name="vote" type="radio" value="2" /> {vb:rawphrase bad}</span></label></li>
						<li><label for="vote1"><span class="rating r1"><input id="vote1" name="vote" type="radio" value="1" /> {vb:rawphrase terrible}</span></label></li>
						<li class="formsubmit">
							<input class="button" id="srating_{vb:raw link.linkid}" type="submit" value="{vb:rawphrase vote_now}" />
						</li>
					</ul>
					</form>
				</li>
			</vb:if>
			
			<vb:if condition="$show['inlinemod']">
				<li class="popupmenu nohovermenu" id="post_imodsel">
					<h6><a class="popupctrl" href="javascript://">{vb:rawphrase inline_mod}</a></h6>
					<ul class="popupbody popuphover">
						<li><a href="javascript://" id="post_imodsel:all">{vb:rawphrase select_all}</a></li>
						<li><a href="javascript://" id="post_imodsel:none">{vb:rawphrase deselect_all}</a></li>
						<li><a href="javascript://" id="post_imodsel:invert">{vb:rawphrase invert_selection}</a></li>
					</ul>
				</li>
			</vb:if>

		</ul>
	</div>
</div>

<div id="postlist_bla" class="postlist"></div>

<h2 class="blockhead">
	<span style="float: {vb:stylevar right}">
		<img alt="{vb:raw link.statustitle}" border="0" src="{vb:stylevar imgdir_statusicon}/post_{vb:raw link.statusicon}.png" /> {vb:raw link.dateadded} {vb:raw link.timeadded}
	</span>
	<img alt="" id="subimg_{vb:raw link.linkid}" src="{vb:stylevar imgdir_misc}/subscribed.png" title="{vb:rawphrase you_are_subscribed_to_this_link}" style="display: <vb:if condition="$link['issubscribed']">inline<vb:else />none</vb:if>" />
	<img alt="" id="favimg_{vb:raw link.linkid}" src="images/heart.gif" title="{vb:rawphrase favorite}" style="display: <vb:if condition="$link['isfavorite']">inline<vb:else />none</vb:if>" />
	{vb:raw link.name_highlighted}
</h2>
<table align="center" border="0" class="vba_table" width="100%">
	<tr>
		<td class="blockrow" width="160">{vb:rawphrase url}:</td>
		<td class="blockrow"><a href="showlink.php?{vb:raw session.sessionurl}do=goto&amp;l={vb:raw link.linkid}&amp;linkurl={vb:raw link.linkurl_string}" target="_blank"<vb:if condition="$show['nofollow']"> rel="nofollow"</vb:if>>{vb:raw link.linkurl_display}</a></td>
		<vb:if condition="$vba_options['links_thumbshots_showlink']">
			<td rowspan="{vb:raw show.thumbshots_rowspan}" valign="top" align="{vb:stylevar right}">
				<a href="showlink.php?{vb:raw session.sessionurl}do=goto&amp;l={vb:raw link.linkid}&amp;linkurl={vb:raw link.linkurl_string}" target="_blank"<vb:if condition="$show['nofollow']"> rel="nofollow"</vb:if>><img alt="{vb:raw link.name_nohighlight}" class="vba_icon" src="http://images.thumbshots.com/image.aspx?cid=oBxirdQWleY%3d&v=1&w=300&url={vb:raw link.linkurl}" width="300" border="0" /></a>
			</td>
		</vb:if>
	</tr>

	{vb:raw customfieldbits_above}

	<tr>
		<td class="blockrow" valign="top">{vb:rawphrase description}:</td>
		<td class="blockrow"><blockquote class="postcontent restore">{vb:raw link.description}</blockquote></td>
	</tr>
	<tr>
		<td class="blockrow">{vb:rawphrase category}:</td>
		<td class="blockrow"><a href="{vb:raw link.caturl}">{vb:raw link.category}</a></td>
	</tr>
	<tr>
		<td class="blockrow" valign="top">{vb:rawphrase tags}:</td>
		<td class="blockrow">{vb:raw link.keywords}</td>
	</tr>
	<tr>
		<td class="blockrow">{vb:rawphrase views}:</td>
		<td class="blockrow" colspan="{vb:raw show.thumbshots_colspan}">{vb:raw link.views}</td>
	</tr>
	<tr>
		<td class="blockrow">{vb:rawphrase user}:</td>
		<td class="blockrow" colspan="{vb:raw show.thumbshots_colspan}">
			<vb:if condition="$link['userid']">
				<a href="{vb:raw vboptions.bburl}/{vb:link member, {vb:raw link}}" rel="nofollow">{vb:raw link.username}</a> (<a href="{vb:raw link.membercatlink}" rel="nofollow">{vb:rawphrase view_all_of_x_links, {vb:raw link.username_poss}}</a>)
			<vb:else />
				{vb:rawphrase guest}
			</vb:if>
		</td>
	</tr>
	<vb:if condition="$show['replies']">
		<tr>
			<td class="blockrow">{vb:rawphrase replies}:</td>
			<td class="blockrow" colspan="{vb:raw show.thumbshots_colspan}">{vb:raw link.posts}</td>
		</tr>
	</vb:if>

	{vb:raw customfieldbits_below}
	
</table>

<div class="postbit">
	<div class="postfoot">
		<div class="textcontrols">
			<span class="postcontrols">
				<vb:if condition="$show['editlink']">
					<a class="editpost" href="addlink.php?{vb:raw session.sessionurl}do=editlink&amp;l={vb:raw link.linkid}"><img src="{vb:stylevar imgdir_button}/trans_40b.png" id="editimg_link" alt="" /> {vb:rawphrase edit_link}</a>
				</vb:if>
			</span>
			<vb:if condition="$show['report_link']">
				<a class="report" href="misc.php?{vb:raw session.sessionurl}do=report&amp;linkid={vb:raw link.linkid}" rel="nofollow">&nbsp; </a>
			</vb:if>
			<vb:if condition="$show['modopts']">
				<a class="ip" href="moderate.php?{vb:raw session.sessionurl}do=getip&amp;l={vb:raw link.linkid}">&nbsp; </a>
			</vb:if>
		</div>
	</div>
</div>

<vb:if condition="$show['ratelink']">
<script type="text/javascript">
<!--
	int_l_rating({vb:raw link.linkid}, '');
//-->
</script>
</vb:if>

<div id="above_postlist" class="above_postlist">
	<vb:if condition="$show['replylink']">
		<a href="newreply.php?{vb:raw session.sessionurl}l={vb:raw link.linkid}" rel="nofollow" class="newcontent_textcontrol"><vb:if condition="$show['closedbutton']">{vb:rawphrase closed_link}<vb:else />+ {vb:rawphrase reply_to_link}</vb:if></a>
		<div class="separator"></div>
	</vb:if>
</div>

<div class="navlinks">
	&laquo; <a href="showlink.php?{vb:raw session.sessionurl}l={vb:raw link.linkid}&amp;goto=previous{vb:raw adv_sorturl_nospider}" rel="nofollow">{vb:rawphrase previous_link}</a> | <a href="showlink.php?{vb:raw session.sessionurl}l={vb:raw link.linkid}&amp;goto=next{vb:raw adv_sorturl_nospider}" rel="nofollow">{vb:rawphrase next_link}</a> &raquo;
</div>

<vb:if condition="$show['postheader']">
	<div style="float: {vb:stylevar right}">
		<vb:if condition="$pagenav">
				{vb:raw pagenav}
		</vb:if>
	</div>
	<div class="vba_heading">{vb:rawphrase replies_to_link}: {vb:raw link.name}</div>

	<vb:if condition="$show['inlinemod']">
		<script type="text/javascript">
		<!--
			vB_XHTML_Ready.subscribe(function() { register_inlinemod("vba_inlinemod_form", "li", "postbit", "post"); });
		//-->
		</script>

		<form action="moderate.php" method="post" id="vba_inlinemod_form" name="inlinemodform">
		<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
		<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
		<input type="hidden" name="do" value="inlinemoderation" />
		<input type="hidden" name="type" value="post" />
		<input type="hidden" name="movlinkid" value="{vb:raw link.linkid}" />
		<input type="hidden" name="url" value="{vb:raw link.url}" />
	</vb:if>
	
	<div id="postlist" class="postlist">
		<ol id="posts" class="posts" start="1">
			{vb:raw postbit}
		</ol>

		<div class="separator"></div>

		<div class="postlistfoot">
			<vb:if condition="$show['inlinemod']">
				<div id="inlinemod_formctrls" class="popupmenu">
					<a href="javascript://" class="popupctrl"><span class="ctrlcontainer">{vb:rawphrase moderation_tools} (<span id="post_inlinemod_count">0</span>)</span></a> 
					<ul class="popupbody popuphover">
						<li>
							<label for="delete_posts"><input id="delete_posts" type="radio" name="action" value="delete" /> {vb:rawphrase delete_posts}</label>
						</li>
						<li>
							<label for="undelete_posts"><input id="undelete_posts" type="radio" name="action" value="restore" /> {vb:rawphrase undelete_posts}</label>
						</li>
						<li>
							<label for="move_posts"><input id="move_posts" type="radio" name="action" value="move" /> {vb:rawphrase move_posts}</label>
						</li>
						<li>
							<label for="unapprove_posts"><input id="unapprove_posts" type="radio" name="action" value="unapprove" /> {vb:rawphrase unapprove_posts}</label>
						</li>
						<li>&nbsp;</li>
						<li>
							<label for="selected_posts"><input id="selected_posts" type="radio" name="action" value="viewselected" /> {vb:rawphrase view_selected_posts}</label></li>
						<li>
							<label for="clear_posts"><input id="clear_posts" type="radio" name="action" value="deselectall" /> {vb:rawphrase clear_post_list}</label></li>
						<li class="formsubmit">
							<input type="submit" class="button" value="{vb:rawphrase proceed_ellipsis}" /> 
						</li>
					</ul>
				</div>
			</vb:if>
		</div>
	</div>

	<vb:if condition="$show['inlinemod']">
		</form>
	</vb:if>

	<div id="below_postlist" class="below_postlist">
		<a href="newreply.php?{vb:raw session.sessionurl}l={vb:raw link.linkid}" rel="nofollow" class="newcontent_textcontrol" id="newreplylink_bottom"><vb:if condition="$show['closedbutton']">{vb:rawphrase closed_link}<vb:else />{vb:rawphrase reply_to_link}</vb:if></a>

		<div id="pagination_bottom" class="pagination_bottom">
			<vb:if condition="$pagenav">
				{vb:raw pagenav}
			</vb:if>
		</div>
	</div>

<vb:else />
	<div id="posts"></div>
</vb:if>
<br />
<vb:if condition="$show['quickreply']">
<div id="qr_defaultcontainer" class="blockfoot floatcontainer<vb:if condition="$show['qr_require_click']"> qr_require_click</vb:if>">
	<form class="vbform" action="newreply.php" method="post" name="quick_reply" id="quick_reply" onsubmit="return qr_prepare_submit(this, {vb:raw vboptions.postminchars});">

	<h3 id="quickreply_title" class="blockhead"><img src="{vb:stylevar imgdir_button}/reply_40b.png" alt="{vb:rawphrase quick_reply}" /> {vb:rawphrase quick_reply}<a name="quickreply"></a> <img style="display:none" id="progress_newreplylink_bottom" src="{vb:stylevar imgdir_misc}/progress.gif"  alt="" /></h3>
	<div class="wysiwyg_block">
	<div id="qr_error_tbody" class="blockbody errorblock hidden">
		<h3 class="blocksubhead">{vb:rawphrase errors_occured_when_submitted}</h3>
		<div class="blockrow error" id="qr_error_td"></div>
		<div class="blockrow"><a href="javascript://" class="textcontrol" onclick="return qr_hide_errors()">{vb:rawphrase okay}</a></div>
	</div>

	<div class="blockbody formcontrols">
		<div class="blockrow">
			{vb:raw messagearea}
		</div>
		<vb:if condition="$bbuserinfo['signature'] OR $vba_options['links_allowsubscribe'] OR $vba_options['links_allowfav']">
		<div class="blockrow">
			<ul class="checkradio group">
				<vb:if condition="$bbuserinfo['signature']">
				<li>
					<label for="cb_signature">
						<input type="checkbox" name="signature" id="cb_signature" value="1" checked="checked" tabindex="5"/>
						{vb:rawphrase show_your_signature}
					</label>
				</li>
				</vb:if>

				<vb:if condition="$vba_options['links_allowsubscribe']">
				<li>
					<label for="cb_subscribe">
						<input id="cb_subscribe" type="checkbox" name="subscribe" value="1" tabindex="5" />
						{vb:rawphrase subscribe_to_link}
					</label>
				</li>
				</vb:if>
				<vb:if condition="$vba_options['links_allowfav']">
				<li>
					<label for="cb_favorites">
						<input id="cb_favorites" type="checkbox" name="favorite" value="1" tabindex="5" />
						{vb:rawphrase add_to_favorites}
					</label>
				</li>
				</vb:if>
			</ul>
		</div>
		</vb:if>
	</div>

	<div class="blockfoot actionbuttons">
		<div class="group">
			<input type="submit" class="button" value="{vb:rawphrase post_quick_reply}" accesskey="s" title="(Alt + S)" name="sbutton" tabindex="2" id="qr_submit" onclick="clickedelm = this.value" />
			<input type="submit" class="button" value="{vb:rawphrase go_advanced}" accesskey="x" title="(Alt + X)" name="preview" tabindex="3" id="qr_preview" onclick="clickedelm = this.value" />
			<input type="reset" id="qr_cancelbutton" class="button" style="display:none;" value="{vb:rawphrase cancel}" accesskey="c" title="(Alt + C)" name="cancel" tabindex="4" onclick="qr_reset();" />
		</div>
	</div>

	<div id="qr_posting_msg" class="hidden">
		<img src="{vb:stylevar imgdir_misc}/progress.gif" alt="{vb:rawphrase posting_quick_reply_please_wait}" />&nbsp;<strong>{vb:rawphrase posting_quick_reply_please_wait}</strong>
	</div>
	</div>
	<input type="hidden" name="fromquickreply" value="1" />
	<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
	<input type="hidden" name="do" value="postreply" />
	<input type="hidden" name="linkid" value="{vb:raw link.linkid}" id="qr_threadid" />
	<input type="hidden" name="p" value="{vb:raw qrpostid}" id="qr_postid" />
	<input type="hidden" name="parseurl" value="1" />
	<input type="hidden" name="quickreply" id="qr_quickreply" />
	<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />

	<vb:if condition="!is_browser('ie') AND $show['wysiwyg']">
		<div id="qr_scroll"></div>
	</vb:if>


	</form>
</div>
</vb:if>

{vb:raw categoryjump}

{vb:raw footer}
</body>
</html> 
Reply With Quote
  #4  
Old 12-24-2011, 03:25 AM
armchairproduct armchairproduct is offline
Member
 
Join Date: May 2009
Posts: 53
Default

Any thoughts?
Reply With Quote
  #5  
Old 06-26-2012, 12:57 PM
armchairproduct armchairproduct is offline
Member
 
Join Date: May 2009
Posts: 53
Default

Bump
Reply With Quote
  #6  
Old 07-03-2012, 06:23 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

You would need to compare your custom version to the default and manually apply any changes, or revert the template.
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #7  
Old 07-04-2012, 03:01 PM
armchairproduct armchairproduct is offline
Member
 
Join Date: May 2009
Posts: 53
Default

Thanks Brian - sorted.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/ Marvin Hlavac Troubleshooting & Problems 5 07-04-2012 03:28 AM
problem - $bbuserinfo array is null dicky96 "How Do I..." Questions 1 03-16-2011 04:14 PM
Warning: array_diff() [function.array-diff]: Argument #1 is not an array in /modules/ puregraf Troubleshooting & Problems 10 01-12-2010 07:20 PM
Errors: Warning: array_merge() [function.array-merge]: Argument #1 is not an array in FleaBag Troubleshooting & Problems 7 02-21-2008 01:24 PM
Warnung: array_merge() [function.array-merge]: Argument #2 is not an array in /links/ Spoky Troubleshooting & Problems 2 10-30-2006 05:02 PM


All times are GMT -4. The time now is 01:57 AM.

Forums Powered by vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.
Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for our products.