Author |
Topic  |
|
Jiangun
Starting Member
2 Posts |
Posted - 16 September 2002 : 02:51:34
|
When I reply to a topic,instead of the reply going to the bottom of the orginal message,it is on top. How do I change it so replys show after the original,1st reply,2 reply and so on....
I guess I should say newest replys to the bottom.
Thanks for the help!!! |
|
Rasco
Advanced Member
    
Germany
3192 Posts |
Posted - 16 September 2002 : 03:14:20
|
Should be this. In topic.asp change
strSql = strSql & " ORDER BY T_LAST_POST DESC;"
to
strSql = strSql & " ORDER BY T_LAST_POST ASC;" |
German Snitz Forum
|
 |
|
DoraMoon
Average Member
  
Taiwan
661 Posts |
Posted - 16 September 2002 : 03:35:29
|
i think what the exact meaning by Rasco is ... (i know he just typing too hurry ... )
about line.332 in topic.asp <edit> also for jumping last post work correctly, the line.220 seem need the same modification too..</edit> strSql4 = " ORDER BY R.R_DATE ASC"
change it to strSql4 = " ORDER BY R.R_DATE DESC"
then it'll show topic,1st(newest)reply,2nd reply......  |
~ . .. . . .~ .~~ |
Edited by - DoraMoon on 16 September 2002 04:12:27 |
 |
|
Jiangun
Starting Member
2 Posts |
Posted - 16 September 2002 : 04:42:25
|
Ok no,
What I want to do is:
topic,1st reply,2nd reply,Newest
|
 |
|
DoraMoon
Average Member
  
Taiwan
661 Posts |
Posted - 16 September 2002 : 06:59:23
|
quote: Originally posted by Jiangun
Ok no,
What I want to do is:
topic,1st reply,2nd reply,Newest
sorry for misunderstanding... but is it just like this in topic.asp by default ????
so i guess you mean the "Topic Review" order when you post a new reply.. try this... in post.asp file about line.1402 strSql = strSql & " ORDER BY R.R_DATE DESC;" change to strSql = strSql & " ORDER BY R.R_DATE ASC;"
if guess wrong again, pls let me know ~~~ thx.  |
 |
|
DoraMoon
Average Member
  
Taiwan
661 Posts |
Posted - 16 September 2002 : 07:15:16
|
and maybe i need to remind one thing...
in v.3.4.x, the Topic Review will limit to show xx(xx=the PageSize you set in Feature Configuration) replies only. so if this topic already have more than xx replies.. above my modification will show the previous xx old replies, and ignore the newest reply !!
not sure what you want it shown? and maybe you should refer this topic.. http://forum.snitz.com/forum/topic.asp?TOPIC_ID=33279 |
~ . .. . . .~ .~~ |
 |
|
|
Topic  |
|