Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Bug Reports (Closed)
 any member can sort by last here date
 Forum Locked  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

phy1729
Average Member

USA
589 Posts

Posted - 17 August 2007 :  09:07:16  Show Profile
In members.asp line 169 I think should changed to

case "lastheredatedesc" and mlev=4

Currently any user may sort like this but only an admin can see the date. I realize this isn't much of a bug, but I didn't know where else to post it.<

Edited by - AnonJr on 17 March 2009 19:16:38

HuwR
Forum Admin

United Kingdom
20580 Posts

Posted - 17 August 2007 :  12:50:01  Show Profile  Visit HuwR's Homepage
if only the admin can see the column, then only the admin can sort by it, since you need to click on the column in order to sort by it<
Go to Top of Page

phy1729
Average Member

USA
589 Posts

Posted - 18 August 2007 :  09:34:38  Show Profile
edit the url to: some.forum.com/path/members.asp?method=lastheredatedesc
I realize this isn't much but it's one line to fix.<

Edited by - phy1729 on 18 August 2007 11:27:32
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 18 August 2007 :  11:32:35  Show Profile  Send ruirib a Yahoo! Message
As you said, it's a minor thing, no troubles caused, not a big issue.<


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

pdrg
Support Moderator

United Kingdom
2897 Posts

Posted - 18 August 2007 :  13:25:40  Show Profile  Send pdrg a Yahoo! Message
Thanks for thinking of the problem though - good exception spotting skills are valuable. Have you had a look round the .NET Beta, see if you find anything there before it goes live?<
Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 03 January 2008 :  19:12:44  Show Profile
In members.asp, change lines 167 - 171 from:
case "lastheredateasc"
	strSql4 = " ORDER BY M_LASTHEREDATE ASC, M_NAME ASC"
case "lastheredatedesc"
	strSql4 = " ORDER BY M_LASTHEREDATE DESC, M_NAME ASC"
to this:
case "lastheredateasc"
	if mlev = 4 or mlev = 3 then
		strSql4 = " ORDER BY M_LASTHEREDATE ASC, M_NAME ASC"
	else
		strSql4 = " ORDER BY M_POSTS DESC, M_NAME ASC"
	end if
case "lastheredatedesc"
	if mlev = 4 or mlev = 3 then 
		strSql4 = " ORDER BY M_LASTHEREDATE DESC, M_NAME ASC"
	else
		strSql4 = " ORDER BY M_POSTS DESC, M_NAME ASC"
	end if

Fixed in version 3.4.07.<

Support Snitz Forums

Edited by - Davio on 05 January 2008 16:05:43
Go to Top of Page
  Previous Topic Topic Next Topic  
 Forum Locked  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.1 seconds. Powered By: Snitz Forums 2000 Version 3.4.07