2013-05-28 37 views
0

我一直在編輯我的MyBB portal.php,直到最近它顯示正常。我在最近的帖子上面添加了一個自定義歡迎屏幕,並且顯示正常。MyBB {}標籤顯示而不是口譯

今天我進行整理代碼,添加新行(輸入)和縮進以使代碼更清晰。現在,做完這件事後,發生了嚴重的錯誤。它沒有顯示完整的MyBB頁面樣式,而是顯示了{$ header}這樣的標籤。下面的代碼:

<html> 
<head> 
<title>{$mybb->settings['bbname']}</title> 
{$headerinclude} 
</head> 
<body> 
{$header} 
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center"> 
<tr><td valign="top" width="200"> 
{$welcome} 
{$pms} 
{$search} 
{$stats} 
{$whosonline} 
{$latestthreads} 
</td> 
<td>&nbsp;</td> 
<td valign="top"> 
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder"> 
    <tr> 
     <td class="trow1"> 
      <span class="smalltext"> 
<!--Main Welcome Panel--> 
     <p style="text-align: center;"> 
      <img alt="" src="http://axelcraft.net/images/welcome.png" style="width: 1024px;" /></p> 
     <p style="text-align: center;"> 
      <span style="color:#696969;"><span style="font-size: 24px;"><em><span style="font-family: hutrmold;">Get ready for a whole new minecraft experience.</span></em></span></span></p> 
<!--Slideshow--> 
<center> 
    <iframe src="http://axelcraft.net/images/slides/slideshow.html" width="800" height="320" scrolling="no" frameBorder="0" style="overflow:hidden;"></iframe> 
</center> 
<!--End Slideshow--> 
     <p style="text-align: center;"> 
      <span style="font-size:20px;"> 
       <span style="font-family: 'trebuchet ms', helvetica, sans-serif;"> 
        Thanks for visiting AxelCraft! Start by <a href="http://axelcraft.net/member.php?action=register"><span style="color:#385947;"><span style="">signing up</span></span></a> to get the latest news and updates on the server as well as to register for <a href="http://axelcraft.net/forumdisplay.php?fid=9"><span style="color:#385947;">contests</span></a> and <a href="http://axelcraft.net/forumdisplay.php?fid=19"><span style="color:#385947;">events</span></a>! 
       </span> 
      </span> 
     </p> 
<!--End Welcome Panel--> 
      </span> 
     </td> 
    </tr> 
</table> 
<br /> 
{$announcements} 
</td> 
</tr> 
</table> 
{$footer} 
</body> 
</html> 

現在,當你瀏覽到portal.php,它只能說明{$}標籤與HTML段落一起。它應該像MyBB一樣顯示側邊欄和標題左右。看看我的意思here.

將其與普通論壇頁面here相比較。

我找不出有什麼問題或爲什麼顯示不正常。

回答

-1

我可能是錯的,但是否缺少一個「>」這裏

<tr><td 

<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center"> 
<tr><td valign="top" width="200">