Changeset 2500 for branches/release-39/lib/MT/ArchiveType/AuthorDaily.pm
- Timestamp:
- 06/04/08 01:21:49 (18 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/release-39/lib/MT/ArchiveType/AuthorDaily.pm
r2401 r2500 130 130 "extract(day from authored_on)" 131 131 ], 132 'sort' => "extract(year from authored_on) $order, 133 extract(month from authored_on) $order, 134 extract(day from authored_on) $order" 132 'sort' => [ 133 { column => 'extract(year from authored_on)', desc => $order }, 134 { column => 'extract(month from authored_on)', desc => $order }, 135 { column => 'extract(day from authored_on)', desc => $order } 136 ], 135 137 } 136 138 ) or return $ctx->error("Couldn't get monthly archive list");
