为什么我的留言回复没有显示出来?

2016-07-07 15:31 来源:www.chinab4c.com 作者:ecshop专家



message_list.lbi里的代码没错吧。。
  1. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  2. <div class="box"> <h3><span>{$lang.message_board}</span></h3>
  3. <div class="box_1">

  4. <div class="boxCenterList">
  5. <!--{foreach name=message_lists from=$msg_lists key=key item=msg}-->
  6. <div class="f_l">
  7. [<b>{$msg.msg_type}</b>] {$msg.user_name}:<font class="f4">{$msg.msg_title}</font> ({$msg.msg_time})
  8. </div>
  9. <div class="msgBottomBorder word">
  10. {$msg.msg_content}<br>
  11. <!-- {if $msg.re_msg_content} -->
  12. <table class="liuyan" width="730" ><tr><td><img src="images/kfhf2.gif"></td><td style="padding-top: 5px;" width="630"><font color="#7F008A">{$msg.re_msg_content}</font></td></tr></table>
  13. <!-- {/if} -->
  14. </div>
  15. <!--{/foreach}-->
  16. </div>
  17. </div>
  18. </div>
复制代码
错误页面如下:http://szcs.w10.ispmi.cn/message.php。
完全没有显示出留言回复。。

回答:
  1. <!-- {if $msg.re_msg_content} -->
  2. <table class="liuyan" width="730" ><tr><td><img src="images/kfhf2.gif"></td><td style="padding-top: 5px;" width="630"><font color="#7F008A">{$msg.re_msg_content}</font></td></tr></table>
  3. <!-- {/if} -->
复制代码
中的
  1. <!-- {if $msg.re_msg_content} -->
复制代码
改成
  1. <!-- {if $msg.re_content} -->
复制代码
试试



2# 77shop
谢谢77shop:
  1. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  2. <div class="box">
  3. <div class="box_1">
  4. <h3><span>{$lang.message_board}</span></h3>
  5. <div class="boxCenterList">
  6. <!--{foreach name=message_lists from=$msg_lists key=key item=msg}-->
  7. <div class="f_l">
  8. [<b>{$msg.msg_type}</b>] {$msg.user_name}:<font class="f4">{$msg.msg_title}</font> ({$msg.msg_time})
  9. </div>
  10. <div class="msgBottomBorder word">
  11. {$msg.msg_content}<br>
  12. <!-- {if $msg.re_conten} -->
  13. <table class="liuyan" width="730" ><tr><td><img src="images/kfhf2.gif"></td><td style="padding-top: 5px;" width="630"><font color="#7F008A">{$msg.re_content}</font></td></tr></table>
  14. <!-- {/if} -->
  15. </div>
  16. <!--{/foreach}-->
  17. </div>
  18. </div>
复制代码

现在看你的网站正常哦

现在看你的网站正常哦
晓天 发表于 2010-1-19 14:37


嗯。谢谢。。

真搞不懂,同样的代码,在其它网站上正常,到了我的网站就不对头了。。