Author Topic: ManageBoards.template.php ERROR! please help me!  (Read 1962 times)

Offline Michael Chandler

ManageBoards.template.php ERROR! please help me!
« on: October 06, 2007, 09:53:14 am »
Was a problem loading the subject or file of /Themes/default/ManageBoards.template.php language. Please it reviews the syntax and it tries again - it remembers, the apostrophes (') generally must have a sequence of escape with the inverted diagonal (\).

Code: [Select]
Parse error: syntax error, unexpected '>' in .../Themes/default/ManageBoards.template.php on line 409

400: <td>
401: <b>', $txt['mboards_override_theme'], '</b><br />
402: ', $txt['mboards_override_theme_desc'], '<br /><br />
403: </td>
404: <td valign="top" align="right">
405: <input type="checkbox" name="override_theme"', $context['board']['override_theme'] ? ' checked="checked"' : '', ' class="check" />
406: </td>
407: </tr>//BEGIN SMFShop Shop MOD 1.3 (Build 6) code
408: loadLanguage("Shop");

409: echo '                     <tr>

410: <td>
411: <b>', $txt['shop_count_points'], '</b><br />
412: ', $txt['shop_count_points_msg'], '<br /><br />
413: </td>

This error appears when attempt to accede to the administration of forums of the AdminCP  :-[

Offline Xarcell

Re: ManageBoards.template.php ERROR! please help me!
« Reply #1 on: October 13, 2007, 09:09:21 am »
Code: [Select]
407: </tr>//BEGIN SMFShop Shop MOD 1.3 (Build 6) code
408: loadLanguage("Shop");

TRY:
Code: [Select]
407: </tr>';
//BEGIN SMFShop Shop MOD 1.3 (Build 6) code
408: loadLanguage("Shop");