SQL error on V3 Arcade Skin

BaCo35

New Member
I have Ibpro 2.6.8 on one of my sites.
It's working pretty well, except when I switch between the default skins I get an SQL error.

The IbPro skin works like a charm, but as soon as I switch to the V3 it will give me the error:

Fatal error: Call to undefined method skin_v3Arcade::copyright() in /home/***/public_html/forum/arcade.php on line 493

Any suggestions what the problem could be?
 

bluescorpion

New Member
This is a shot in the dark but see if you have this line of code:

IN skin_v3Arcade.php

LOOK FOR <table border='0' table cellspacing="3" cellpadding="4" width='100%'>


If you do, remove the second table from it.
 

BaCo35

New Member
It looks like this in the template:

Code:
<div class ='tcat'>
<table border='0' table cellspacing="3" cellpadding="4" width='100%'>
<tr>
  <td width="100%" align="center" class="tcat">{$ibforums->lang['create_new_t']}</td>
  <table width='100%'>
  	<form action='arcade.php?' method='post' name='creattourney' >
		 <input type='hidden' name='act' value='Arcade'>
		 <input type='hidden' name='do' value='docreatetourney'>
  		<tr>
  			<td class='alt2'>
			{$ibforums->lang['which_game']}</td>
			<td class='alt2'>
				<select name='the_game' class='forminput' size=1>
		  			$formlistgame
				</select>
			</td>
		</tr>
  		<tr>
  			<td class='alt2'>{$ibforums->lang['many_players']}</td>
			<td class='alt2'>
				<select name='nbjoueurs' class='forminput' size=3>
		  			<option value='2'>{$ibforums->lang['two_players']}</option>
		  			<option value='4'>{$ibforums->lang['four_players']}</option>
		  			<option value='8' selected='selected'>{$ibforums->lang['eight_players']}</option>
				</select>
			</td>
		</tr>
  		<tr>
  			<td class='alt2'>{$ibforums->lang['tries_each_round']}</td>
			<td class='alt2'>
				<select name='nbtries' class='forminput' size=5>
		  			<option value='1'>1 {$ibforums->lang['try']}</option>
		  			<option value='2'>2 {$ibforums->lang['tries']}</option>
		  			<option value='3' selected='selected'>3 {$ibforums->lang['tries']}</option>
		  			<option value='4'>4 {$ibforums->lang['tries']}</option>
		  			<option value='5'>5 {$ibforums->lang['tries']}</option>
				</select>
			</td>
		</tr>
		{$extra}
		<tr>
            <td align='center' class='pformstrip' colspan='2' ><input type='submit' value='{$ibforums->lang['create_tourney']}' id='button' accesskey='s'></td>
		</tr>
	</form>
  </table>
 </td>
</tr>
</table>
</div>
<br />
EOF;

I removed the table within the table, but that didn't make any difference: still same error message.

Is that what you were suggesting?
Thanks for your suggestion anyway.
 

BaCo35

New Member
I ended up re-downloading the package and copying the content of the skin_v3Arcade.php file over the existing one, and voila, all good.

Cheers :D
 
Top