Changeset 1611 for branches

Show
Ignore:
Timestamp:
10/17/06 01:35:47 (2 years ago)
Author:
spetersen
Message:

Small sql change. Postgres requires all non-aggregate columns to be listed in the 'group by' clause

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/postgresql/cls/alltags.php

    r1603 r1611  
    9292        } 
    9393         
    94         $sql .= " group by m.tid order by tag"; 
     94        $sql .= " group by m.tid, t.tag order by tag"; 
    9595         
    9696        $res = rss_query($sql);