Changeset 7874 for trunk/MagicSoft/Mars/datacenter/db/include.php
- Timestamp:
- 08/15/06 15:32:45 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/db/include.php
r7873 r7874 423 423 $col = FindAlias($alias, $key); 424 424 425 $ord=" %2B";425 $ord="-"; 426 426 $issort = ""; 427 427 if (!empty($_GET["fSortBy"]) && substr($_GET["fSortBy"], 0, -1)==$col) 428 428 { 429 if (substr($_GET["fSortBy"], -1)==" +")429 if (substr($_GET["fSortBy"], -1)=="-") 430 430 { 431 $ord=" -";431 $ord="+"; 432 432 $issort=" <IMG SRC='down.gif'>"; 433 433 }
Note:
See TracChangeset
for help on using the changeset viewer.