View Single Post
  #8  
Old 01-20-2012, 09:06 PM
MagicPID's Avatar
MagicPID MagicPID is offline
 
Join Date: Jul 2011
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Lynne,

Thanks for your continued help. I enabled template name in HTML comments, went to one of the troublesome pages (in this case, the inbox) and learned that where it said "Array" over and over again is in "pm_messagelistbit." Though I have found that template in the editor within AdminCP, I am unsure of how to proceed...

Code:
<li class="blockrow pmbit" id="pm_{vb:raw pm.pmid}">
	<div class="datetime">
		<label for="pm_imod_checkbox_{vb:raw pmid}">{vb:raw pm.senddate} <span class="time">{vb:raw pm.sendtime}</span> <vb:if condition="$show['pmcheckbox']"><input type="checkbox" name="pm[{vb:raw pmid}]" id="pm_imod_checkbox_{vb:raw pmid}" value="{vb:raw groupid}" /></vb:if></label>
	</div>
	<img src="{vb:stylevar imgdir_statusicon}/pm_{vb:raw pm.statusicon}.png" class="threadicon" alt="" />
	<vb:if condition="$show['pmicon']">
		<img src="{vb:raw pm.iconpath}" class="posticon" alt="{vb:raw pm.icontitle}" />
	</vb:if>
	<vb:if condition="!$show['unread']">
		<a href="private.php?{vb:raw session.sessionurl}do=showpm&amp;pmid={vb:raw pm.pmid}" class="title">{vb:raw pm.title}</a>
		<ol class="commalist">{vb:raw userbit}</ol>
	<vb:else />
		<span class="unread">
			<a href="private.php?{vb:raw session.sessionurl}do=showpm&amp;pmid={vb:raw pm.pmid}" class="title">{vb:raw pm.title}</a>
		</span>
			<ol class="commalist">{vb:raw userbit}</ol>
		
	</vb:if>
	<hr class="none" />
</li>
Edit 1: figured it out. I replaced "vb:raw userbit}" with the following code. Let's hope the same strategy works on other areas of the site that are affected. I'll keep you updated.

Code:
<ol class="commalist">
<vb:each from="userbit" value="row">
<li><a href="{vb:link member|js, {vb:raw row}}" class="username understate">{vb:raw row.username}</a>{vb:raw row.comma}</li>
</vb:each>
</ol>
Edit 2: To be honest, I'm not sure how to go about fixing this next one. As I've mentioned before, my vBulletin knowledge is low when it comes to templates. The following is on a profile page where it says "The last 10 visitors to this page were ..." but it only says "Array."

Code:
<div class="visitors">
	<h5 class="blocksubhead userprof_blocksubhead smaller">{vb:rawphrase recent_visitors}</h5>
	<div class="blockbody userprof_content userprof_content_border">
		<div class="blockrow member_blockrow">
			<vb:if condition="$block_data['visitorcount'] > 0">
				<div class="meta">
					{vb:rawphrase last_x_visitors, {vb:raw block_data.visitorcount}}
				</div>
				<ol class="commalist">
					{vb:raw block_data.visitorbits}
				</ol>
			</vb:if>
			<span class="totalvisits">{vb:rawphrase this_page_has_x_visits, {vb:raw prepared.profilevisits}}</span>
		</div>
	</div>
</div>
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01067 seconds
  • Memory Usage 1,778KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete