Changeset 1436

Show
Ignore:
Timestamp:
04/13/06 11:43:41 (3 years ago)
Author:
mbonetti
Message:

this could break things big time...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/rss/cls/search.php

    r1343 r1436  
    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        }