Changeset 207
- Timestamp:
- 02/13/08 17:49:08 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
taggingreloaded/optionals/de.easy-coding.wcf.sitemaps.taggingreloaded/files/lib/system/event/listener/TaggingReloadedSitemapsPageListener.class.php
r171 r207 46 46 */ 47 47 protected function readTags () { 48 $sql = "SELECT tag 48 $sql = "SELECT tag, 49 SUM(weight) AS n 49 50 FROM wcf".WCF_N."_taggingreloaded 50 51 GROUP BY tag 51 ORDER BY SUM(weight)DESC;";52 ORDER BY n DESC;"; 52 53 $result = WCF::getDB()->sendQuery($sql); 53 54 while ($row = WCF::getDB()->fetchArray($result)) {
