You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2005/07/27 18:04:02 UTC

svn commit: r225538 - /incubator/roller/trunk/src/org/roller/pojos/WeblogEntryData.java

Author: agilliland
Date: Wed Jul 27 09:03:57 2005
New Revision: 225538

URL: http://svn.apache.org/viewcvs?rev=225538&view=rev
Log:
setting default comment days to unlimited.  this is mainly for folks using metaweblogapi, etc, who can't set this value and always end up with only 7 days of comments :/

Modified:
    incubator/roller/trunk/src/org/roller/pojos/WeblogEntryData.java

Modified: incubator/roller/trunk/src/org/roller/pojos/WeblogEntryData.java
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/src/org/roller/pojos/WeblogEntryData.java?rev=225538&r1=225537&r2=225538&view=diff
==============================================================================
--- incubator/roller/trunk/src/org/roller/pojos/WeblogEntryData.java (original)
+++ incubator/roller/trunk/src/org/roller/pojos/WeblogEntryData.java Wed Jul 27 09:03:57 2005
@@ -57,7 +57,7 @@
     protected WebsiteData mWebsite=null;
     protected String mPlugins;
     protected Boolean allowComments = Boolean.TRUE;
-    protected Integer commentDays = new Integer(7);
+    protected Integer commentDays = new Integer(0);
     protected Boolean rightToLeft = Boolean.FALSE;
     protected Boolean pinnedToMain = Boolean.FALSE;