わかりました、私はこのコードを何度も調べましたが、問題を見つけることができず、なぜこのエラーが発生するのか、ファイルの終わりは次のとおりです。
function ouputMainSlider() {
global $USER;
// Get details
$query = "SELECT id, bigimage, heading, fullarticle, dateadded FROM news WHERE status = 1 ";
$query .= "AND (state = '" . $USER->state . "' OR state = 'ALL') AND newstype != 1 and bigimage != '' ";
$query .= "ORDER BY dateadded DESC LIMIT 10";
$restresult = mysql_query($query);
while ($restaurant = mysql_fetch_array($restresult)) :
// Trim article for preview
$preview = trim_str($restaurant['fullarticle'], 270);
?>
<li>
<img alt="<?=fixup($restaurant['heading'])?>" src="images/frontpage/<?=$restaurant['bigimage']?>" width="615" height="309" />
<a href="#" class="read-more">Read More</a>
<p>
<strong><a href="#"><?=fixup($restaurant['heading'])?></a></strong>
<em><?=fixup($preview)?></em>
</p>
</li>
<?php endwhile; ?>
}
?>
その機能を外せば問題はなくなります。