modification of comment ordering

general = { about, articles, links, projects }     meta = { date-posted: 2006-02-24 }

Typo was ordering comments a bit strangely in typo 2.6.0. So, I made a quick change.

Simple diff:

--- typo/app/models/article.rb.old   2006-02-24 02:02:44.664976018 -0500
+++ typo/app/models/article.rb       2006-02-24 02:02:53.425504839 -0500
@@ -7 +7 @@
-  has_many :comments, :dependent => true, :order => "created_at ASC"
+  has_many :comments, :dependent => true, :order => "id ASC"