The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
![]()
I have a custom guild roster on my website and as part of this it will display all of a users game characters formatted into their signature all nice and neat like this:
[80 Magician] Vimto (Erudite) - Primary - Guild Leader Magelo Updated : February 17, 2008 [79 Cleric] Halfhigh (Dwarf) - Two Box - Member Magelo Updated : March 18, 2008 It wasn't until recently that I noticed that my quick reply on a thread wasn't working right, you can type in a message, click submit but the page comes up with an error: The following errors occurred with your submission, but the post is still made but the page doesn't update until you refresh the page. I magaged to get it working by disabling all custom mods and narrowed it down to the code that generates the signature for the roster module by re-enabling them all one by one until it broke again. The code that generates the signatures is here: Code:
<?xml version="1.0" encoding="ISO-8859-1"?> <plugins> <plugin active="1" executionorder="1" product="roster"> <title>Format the text for Auto Sig</title> <hookname>showthread_postbit_create</hookname> <phpcode><![CDATA[foreach ($rosterchars as $key => $rosterchar) { if ($rosterchar['charownid']==$post['userid']) { eval('$post[\'characters\'] .= "' . fetch_template('roster_post_bit') . '";'); } }]]></phpcode> </plugin> <plugin active="1" executionorder="5" product="roster"> <title>Generate Characters for Roster AutoSig</title> <hookname>showthread_start</hookname> <phpcode><![CDATA[$roster_result = $db->query("SELECT * FROM " . TABLE_PREFIX . "roster LEFT JOIN eqdkp_members ON eqdkp_members.member_name=roster.fname Where level >= 50 ORDER by level DESC"); $i=0; while ($rostertemp = $db->fetch_array($roster_result)){ $rosterchars[$i]['guild_rank']=$rostertemp['guild_rank']; $rosterchars[$i]['status']=$rostertemp['status']; $rosterchars[$i]['title']=$rostertemp['title']; $rosterchars[$i]['fname']=$rostertemp['fname']; $rosterchars[$i]['lname']=$rostertemp['lname']; $rosterchars[$i]['race']=$rostertemp['race']; $rosterchars[$i]['class']=$rostertemp['class']; $rosterchars[$i]['level']=$rostertemp['level']; $rosterchars[$i]['charownid']=$rostertemp['charownid']; $rosterchars[$i]['id']=$rostertemp['id']; $rosterchars[$i]['magelo']=$rostertemp['magelo']; $rosterchars[$i]['mageloupdated']=$rostertemp['mageloupdated']; $rosterchars[$i]['lastraid']=date("D, F j",$rostertemp['member_lastraid']); $i++; } global $rosterchars;]]></phpcode> </plugin> </plugins> PHP Code:
I tried modifying it to something like this: Code:
$roster_result = $db->query("SELECT * FROM " . TABLE_PREFIX . "roster LEFT JOIN eqdkp_members ON eqdkp_members.member_name=roster.fname Where level >= 50 AND charownid = . "$post['userid']" . ORDER by level DESC"); Any advice would be appreciated. --------------- Added [DATE]1206265958[/DATE] at [TIME]1206265958[/TIME] --------------- I've removed the foreach statement and it now displays everything in the array but works. So now I'm trying to limit the query to just show the records for that particular poster. I've changed the hook location to Showpost_Start but need some way of matching my records to the userid of that post....any ideas on how to do this in a query? |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|