Update of /cvsroot/secureideas/base-php4
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30360/base-php4
Modified Files:
base_qry_main.php
Log Message:
The default sort order has been "none", so far. I have changed this
to "time_d", i.e. descending order, as suggested by Brian in
bug no. 2899177 in:
http://sourceforge.net/tracker/?func=detail&aid=2899177&group_id=103348&atid=635582
So the most recent events show up first, which is indeed a bit more intuitive.
As this is a matter of taste, I have left the previous setting in the code
as a comment.
Index: base_qry_main.php
===================================================================
RCS file: /cvsroot/secureideas/base-php4/base_qry_main.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- base_qry_main.php 26 May 2009 04:55:50 -0000 1.36
+++ base_qry_main.php 23 Nov 2009 20:24:54 -0000 1.37
@@ -103,7 +103,8 @@
// If there was no previous sort order, default it to none.
if ($sort_order == "" || !isset($sort_order))
{
- $sort_order = "none"; //default to none.
+ // $sort_order = "none"; //default to none.
+ $sort_order = "time_d"; // default set to "descending order"
}
}
|