Code: Select all
<div class="tblshadleft"><div class="tblshadright"><div class="tblshad"></div></div></div>
Code: Select all
<div class="tblminishadleft"><div class="tblminishadright"><div class="tblshad"></div></div></div>
Thank you very much , I do it already ,therat wrote:Open ucp_header.html and findReplace withCode: Select all
<div class="tblshadleft"><div class="tblshadright"><div class="tblshad"></div></div></div>
Link to Authors siteCode: Select all
<div class="tblminishadleft"><div class="tblminishadright"><div class="tblshad"></div></div></div>
http://www.highdefgeek.com/viewtopic.php?p=33241#p33241
Code: Select all
Parse error: syntax error, unexpected '}' in /home/forum/cache/tpl_Prototype_posting_body.html.php on line 252
Code: Select all
<?php } if ($this->_rootref['S_SIG_ALLOWED']) { ?>
<tr>
<td><input type="checkbox" class="radio" name="attach_sig"<?php echo (isset($this->_rootref['S_SIGNATURE_CHECKED'])) ? $this->_rootref['S_SIGNATURE_CHECKED'] : ''; ?> /></td>
<td class="gen"><?php echo ((isset($this->_rootref['L_ATTACH_SIG'])) ? $this->_rootref['L_ATTACH_SIG'] : ((isset($user->lang['ATTACH_SIG'])) ? $user->lang['ATTACH_SIG'] : '{ ATTACH_SIG }')); ?></td>
</tr>
<?php } ?><!-- IF S_XBL_ALLOWED -->
<tr>
<td><input type="checkbox" class="radio" name="attach_xbl"<?php echo (isset($this->_rootref['S_XBL_CHECKED'])) ? $this->_rootref['S_XBL_CHECKED'] : ''; ?> /></td>
<td class="gen"><?php echo ((isset($this->_rootref['L_ATTACH_XBL'])) ? $this->_rootref['L_ATTACH_XBL'] : ((isset($user->lang['ATTACH_XBL'])) ? $user->lang['ATTACH_XBL'] : '{ ATTACH_XBL }')); ?></td>
</tr>
Line 252 -> <?php } if ($this->_rootref['S_NOTIFY_ALLOWED']) { ?>
<tr>
<td><input type="checkbox" class="radio" name="notify"<?php echo (isset($this->_rootref['S_NOTIFY_CHECKED'])) ? $this->_rootref['S_NOTIFY_CHECKED'] : ''; ?> /></td>
<td class="gen"><?php echo ((isset($this->_rootref['L_NOTIFY_REPLY'])) ? $this->_rootref['L_NOTIFY_REPLY'] : ((isset($user->lang['NOTIFY_REPLY'])) ? $user->lang['NOTIFY_REPLY'] : '{ NOTIFY_REPLY }')); ?></td>
</tr>
Code: Select all
<?php } ?><!-- IF S_XBL_ALLOWED -->
Code: Select all
<?php } if ($this->_rootref['S_NOTIFY_ALLOWED']) { ?>
Code: Select all
<!-- IF S_XBL_ALLOWED -->
<tr>
<td><input type="checkbox" class="radio" name="attach_xbl"{S_XBL_CHECKED} /></td>
<td class="gen">{L_ATTACH_XBL}</td>
</tr>
<!-- ENDIF -->
Code: Select all
<?php } ?><!-- IF S_XBL_ALLOWED -->
Howdy!staniks wrote:Hello...
The error is occurring prior to that line. Post up your posting_body.html file and I'll take a look and let you know where the error is.That section of code is in my posting_body.html for the Prototype theme and that code looks like thisCode: Select all
<!-- IF S_XBL_ALLOWED --> <tr> <td><input type="checkbox" class="radio" name="attach_xbl"{S_XBL_CHECKED} /></td> <td class="gen">{L_ATTACH_XBL}</td> </tr> <!-- ENDIF -->
RMcGirr83 wrote:Howdy!staniks wrote:Hello...
The error is occurring prior to that line. Post up your posting_body.html file and I'll take a look and let you know where the error is.That section of code is in my posting_body.html for the Prototype theme and that code looks like thisCode: Select all
<!-- IF S_XBL_ALLOWED --> <tr> <td><input type="checkbox" class="radio" name="attach_xbl"{S_XBL_CHECKED} /></td> <td class="gen">{L_ATTACH_XBL}</td> </tr> <!-- ENDIF -->
Code: Select all
<!-- IF S_SIG_ALLOWED -->
<tr>
<td><input type="checkbox" class="radio" name="attach_sig"{S_SIGNATURE_CHECKED} /></td>
<td class="gen">{L_ATTACH_SIG}</td>
</tr>
<!-- ENDIF -->
<!-- IF S_XBL_ALLOWED -->
<tr>
<td><input type="checkbox" class="radio" name="attach_xbl"{S_XBL_CHECKED} /></td>
<td class="gen">{L_ATTACH_XBL}</td>
</tr>
<!-- ENDIF -->
Quoted from other post for reference.Nelsaidi wrote:You have two spaces in your code. tryand purge the cache (delete cache folder except index.html and .htaccess)Code: Select all
<!-- IF S_XBL_ALLOWED -->
The extra space is not valid, and the parser is not parsing it (thinks its a comment) - then when you add <!-- ENDIF --> it is adding a }
Anyhow, do the above
THANK YOU!!! that did it!Nelsaidi wrote:Quoted from other post for reference.Nelsaidi wrote:You have two spaces in your code. tryand purge the cache (delete cache folder except index.html and .htaccess)Code: Select all
<!-- IF S_XBL_ALLOWED -->
The extra space is not valid, and the parser is not parsing it (thinks its a comment) - then when you add <!-- ENDIF --> it is adding a }
Anyhow, do the above
THANK YOU!RMcGirr83 wrote:[snip]beaten to it[/snip]