You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2005/08/16 04:43:20 UTC

svn commit: r232923 - /incubator/roller/branches/roller_2.0/src/org/roller/presentation/website/actions/YourWebsitesAction.java

Author: snoopdave
Date: Mon Aug 15 19:43:10 2005
New Revision: 232923

URL: http://svn.apache.org/viewcvs?rev=232923&view=rev
Log:
More tweaks to 2.0 pages, look and feel

Modified:
    incubator/roller/branches/roller_2.0/src/org/roller/presentation/website/actions/YourWebsitesAction.java

Modified: incubator/roller/branches/roller_2.0/src/org/roller/presentation/website/actions/YourWebsitesAction.java
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/src/org/roller/presentation/website/actions/YourWebsitesAction.java?rev=232923&r1=232922&r2=232923&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/src/org/roller/presentation/website/actions/YourWebsitesAction.java (original)
+++ incubator/roller/branches/roller_2.0/src/org/roller/presentation/website/actions/YourWebsitesAction.java Mon Aug 15 19:43:10 2005
@@ -225,8 +225,7 @@
             pendings = roller.getUserManager().getPendingPermissions(user); 
             groupBloggingEnabled = 
                 RollerConfig.getBooleanProperty("groupblogging.enabled");
-            planetAggregatorEnabled = 
-                RollerConfig.getBooleanProperty("planet.aggregator.enabled");
+            setPlanetAggregatorEnabled(RollerConfig.getBooleanProperty("planet.aggregator.enabled"));
         }
         public List getPermissions()
         {
@@ -251,6 +250,14 @@
 
         public void setGroupBloggingEnabled(boolean groupBloggingEnabled) {
             this.groupBloggingEnabled = groupBloggingEnabled;
+        }
+
+        public boolean isPlanetAggregatorEnabled() {
+            return planetAggregatorEnabled;
+        }
+
+        public void setPlanetAggregatorEnabled(boolean planetAggregatorEnabled) {
+            this.planetAggregatorEnabled = planetAggregatorEnabled;
         }
     }
 }