Show
Ignore:
Timestamp:
05/15/06 16:53:07 (3 years ago)
Author:
sdcosta
Message:

0.5.3.9999999999999999999999999999999999999999999999999999999999

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • release-branches/0.5.4/gregarius/cls/search.php

    r1343 r1470  
    186186 
    187187        if ($this->orderBy == QUERY_ORDER_BY_DATE) { 
    188             $qOrder = " order by ts desc"; 
     188            $qOrder = " ts desc"; 
    189189        } else { 
    190190            if (getConfig('rss.config.absoluteordering')) { 
    191                 $qOrder = " order by f.position asc, c.position asc"; 
     191                $qOrder = " f.position asc, c.position asc"; 
    192192            } else { 
    193                 $qOrder = " order by f.name asc, c.title asc"; 
     193                $qOrder = " f.name asc, c.title asc"; 
    194194            } 
    195195        }